0 votes
in SQLite by
What is the use of UPADTE query in SQLIte?

1 Answer

0 votes
by

The UPDATE query is used to modify the existing records in the SQLite table. You have to use the WHERE clause to modify a specific row otherwise all rows will be updated.

Syntax:

UPDATE table_name    

SET column1 = value1, column2 = value2...., columnN = valueN    

WHERE [condition];   

Related questions

0 votes
asked Nov 13, 2021 in SQLite by sharadyadav1986
0 votes
asked Nov 13, 2021 in SQLite by sharadyadav1986
...