S
Shon
I am new to SQL Query so there is probably an easy answer to this question.
I posted a question the other day which gave me this query;
SELECT Order.Order Code, MIN(Order.Order Detail) as AA
FROM [Order]
GROUP BY Order.Order Code
How can I add in other fields from my Order table to display these in the
query aswell e.g. this query shows me the order code for all AA Order details
but I also want to display the cost that relates to this order and the
description. these are all fields held in the order table for the relating
record.
I posted a question the other day which gave me this query;
SELECT Order.Order Code, MIN(Order.Order Detail) as AA
FROM [Order]
GROUP BY Order.Order Code
How can I add in other fields from my Order table to display these in the
query aswell e.g. this query shows me the order code for all AA Order details
but I also want to display the cost that relates to this order and the
description. these are all fields held in the order table for the relating
record.