How do you add a field in a select query in access 2003?

I’m doing this UIL Computer Applications test and it want me to add a field to the select query that says AMOUNT = Rate from the ToolsRented table and multiply it by DaysRented from the ToolsRented table. Me and my UIL coach tried to find something in the office help but came out empty handed. So if anyone has a the correct form please tell me. Me and my coach think there is a typo in the test itself. Thank you for ur help.

In QBE you would add a ‘calculated expression:’

AMOUNT: [Rate]*[DaysRented] to the next available column in the Select row

Writing it in SQL:

SELECT [Rate]*[DaysRented] AS AMOUNT FROM ToolsRented

No Typo there

2 Responses to “How do you add a field in a select query in access 2003?”

  1. In QBE you would add a ‘calculated expression:’

    AMOUNT: [Rate]*[DaysRented] to the next available column in the Select row

    Writing it in SQL:

    SELECT [Rate]*[DaysRented] AS AMOUNT FROM ToolsRented

    No Typo there
    References :

  2. In your query designer create a temporary field by going to a blank field column and typing in a name. Give it any name and a colon so as an example

    TotalAmount:Rate * DaysRented

    For FREE Access ebook and videos click here
    http://access-databases.com/ebook
    References :

Leave a Reply