quarry to update name in a row? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

quarry to update name in a row?

8th Jul 2016, 8:22 AM
Ajay Chauhan
Ajay Chauhan - avatar
2 Respuestas
0
Update TableName set ColumnName=Value where[condition];
8th Jul 2016, 9:32 AM
Manu
0
for ex: Table name Student Columns and it's data studentId studentname 1 Ajay if you want to update studentname Ajay to Jay then query is update student set studentname='Jay' where studentID=1; Result: studentId studentname 1 Jay
8th Jul 2016, 9:36 AM
Manu