Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

update row in mysql

Update 'tablename' SET columnname = 'value' where 'columnname' = value;
For Example(let say there is a Student Table):

Update Student SET Student_Name = "John" where Student_ID = 101;
 
PREVIOUS NEXT
Tagged: #update #row #mysql
ADD COMMENT
Topic
Name
9+2 =