Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When i write the query like this:



SQL
CREATE PROCEDURE [dbo].[ItemsSave]
    @xml XML
AS
BEGIN
    SET NOCOUNT ON;

    INSERT INTO [dbo].[MAST](ACCNO)
    VALUES('Y')
    WHERE ACCNO='099035516'
END



i am getting error :
Incorrect syntax near the keyword 'WHERE'.

Please help me to solve this
Posted
Comments
Anurag Sinha V 9-Apr-13 4:18am    
use an Update statement with the where clause...
or use Insert statement without the where clause if its a new insert to the table..

-Regards

Why are you using INSERT? You are actually updating the table, aren't you? You should use UPDATE.
 
Share this answer
 
Comments
Aarti Meswania 9-Apr-13 4:19am    
5+ :)
When you need to add new enregistrement use Insert, but when you need to update a value use Update.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900