Execute the delete query in SQLite
delete query in Sqlite
- Database Name: MyCircle, Table Name: Friends
- |ID|Name |Age|
| 1 |Nitin | 21 |
| 2 |Kaka | 22 |
| 3 |Ganesh| 20 | - Synatx: delete from table_name [where expr..];
- delete from Friends where id=1;
- output:
| 2 |Kaka | 22 |
| 3 |Ganesh| 20 |
swamios |
For More Information Please Visit
No comments:
Post a Comment