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.
seenuFour Starting Member
16 Posts
DELETE FROM Registrations WHERE (EmployeeNo = '00104'), (CourseNo = 'BUS111') and (StartDate = '06/30/2009')
Msg 102, Level 15, State 1, Line 1Incorrect syntax near ','.
visakh16 Very Important crosS Applying yaK Herder
52326 Posts
DELETE FROM Registrations WHERE EmployeeNo = '00104'AND CourseNo = 'BUS111' and StartDate = '06/30/2009'
quote:Originally posted by visakh16your syntax is wrong. have a had a look at books online for delete syntax?it should beDELETE FROM Registrations WHERE EmployeeNo = '00104'AND CourseNo = 'BUS111' and StartDate = '06/30/2009'
SQLTeam.com Articles via RSS
SQLTeam.com Weblog via RSS
- Advertisement -
Articles
Forums
Blogs
Contact Us
About the Site