Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what is wrong w/ join syntax?

Status
Not open for further replies.

equus2

Programmer
Mar 5, 2008
36
0
0
US
Hi,

DELETE FROM table1 tr
JOIN table2 trs
ON tr.BusinessDate = trs.BusinessDate

error next to "tr" - what am i doing wrong?
 
Try this:

Code:
DELETE tr 
FROM table1 tr
JOIN table2 trs
ON tr.BusinessDate = trs.BusinessDate
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top