Viewing 9 posts - 16 through 24 (of 24 total)
is there a way to join the products without using "on"
January 20, 2011 at 10:16 am
Now i get
Your SQL is invalid: The multi-part identifier "Orderdetails.ProductName" could not be bound.
January 20, 2011 at 10:15 am
So take out the first order by and add it at the end before date?
January 20, 2011 at 10:14 am
You can use the GROUP BY for thous
Select *
From TableName
Group By FirstName,LastName
Or how ever you have the name of the columns =)
January 20, 2011 at 9:43 am
what rows are you trying to combine and as far as the sum it is
SELECT ItemName, SUM (Item2) AS "OutPut Name"
From...
January 20, 2011 at 9:37 am
When i use the second join one it said orderdetails is not a valid column name =(
January 19, 2011 at 11:17 am
Instead of selecting all is there away just to bring back certain columns instead of them all because this is a lot.
P.S thank you all for you help so far...
January 19, 2011 at 11:11 am
Table 1
OrderDetails
orderdetailidorderidproductcodeproductname ...
January 19, 2011 at 11:02 am
Viewing 9 posts - 16 through 24 (of 24 total)