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.
asp__developer Posting Yak Master
108 Posts
CREATE PROCEDURE [dbo].[supplier]INSERT INTO supplier(supplier_id, supplier_name)VALUES(24553, 'IBM');
Msg 156, Level 15, State 1, Procedure supplier, Line 4Incorrect syntax near the keyword 'INSERT'.
webfred Master Smack Fu Yak Hacker
8781 Posts
quote:Originally posted by asp__developerI am trying to create a new stored procedure but getting error:My SPCREATE PROCEDURE [dbo].[supplier]ASINSERT INTO supplier(supplier_id, supplier_name)VALUES(24553, 'IBM');ErrorMsg 156, Level 15, State 1, Procedure supplier, Line 4Incorrect syntax near the keyword 'INSERT'.
CREATE PROCEDURE [dbo].[supplier]ASINSERT INTO supplier(supplier_id, supplier_name)VALUES(24553, 'IBM');
SQLTeam.com Articles via RSS
SQLTeam.com Weblog via RSS
- Advertisement -
Articles
Forums
Blogs
Contact Us
About the Site