InterviewSolution
Saved Bookmarks
| 1. |
Write the query to delete all the rows from a table. |
|
Answer» DELETE * FROM table-name is the syntax to delete all the rows from a table. |
|