Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 Need help with a SQL query.

Author  Topic 

weitzhandler
Yak Posting Veteran

64 Posts

Posted - 2009-12-13 : 08:27:23
[code]
SELECT @Tax = SUM(QuoteItem.SalesPrice) * TOP (1) Tax.Amount
FROM Tax INNER JOIN
Job ON Tax.TaxId = Job.TaxId INNER JOIN
Quote ON Job.JobId = Quote.JobId INNER JOIN
QuoteItem INNER JOIN
Room ON QuoteItem.RoomId = Room.RoomId ON Quote.QuoteId = Room.QuoteId
WHERE (Room.QuoteId = @QuoteId) AND (QuoteItem.UnitId = @UnitId)
[/code]

----------
Result:
[code]
Msg 156, Level 15, State 1, Procedure fn_GetQuoteUnitTax, Line 54
Incorrect syntax near the keyword 'TOP'.[/code]

Note, that when I omit the TOP(1) it says:

[code]Msg 8120, Level 16, State 1, Procedure fn_GetQuoteUnitTax, Line 54
Column 'Tax.Amount' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.[/code]

Shimmy

khtan
In (Som, Ni, Yak)

17689 Posts

Posted - 2009-12-13 : 09:14:45
[code]SELECT @Tax = SUM(QuoteItem.SalesPrice * Tax.Amount)[/code]



KH
[spoiler]Time is always against us[/spoiler]

Go to Top of Page
   

- Advertisement -