create update statement'

Ulyssys2009

New member
Joined
Aug 11, 2008
Messages
2
Programming Experience
1-3
Dear All,

I am working on a administrative program for a dental surgery cabinet. I did not get any problem for the INSERT and SELECT statements but i could not find the right syntax for the UPDATE statement.

Can someone refer me to a link where i can find the exact syntax for it, or drop me some line about it.

Thank you in advance
 
Hello JuggaloBrotha,

First Thank for replying. In fact, i need a Website about SQL statement with VB.NET like JDBC for instance.

Thank you again
 
Update syntax

as far as i know, the UPDATE syntax is as follows:

UPDATE [tablename] Name1=value, Name2=value etc. WHERE [criteria]


eg.
UPDATE Movies SET MovieTitle='title', MovieDirector='director' WHERE MovieId='Id'

hope this helps
 
Back
Top