CRUD acronym
CRUD is an acronym that represents four basic functions of persistent storage:
Code Completion
| Operation | SQL |
| Create | INSERT |
| Read (Retrieve) | SELECT |
| Update (Modify) | UPDATE |
| Delete (Destroy) | DELETE |
These operations in SQL are described below via using MYSQL dbms:
Import from file:
ReplyDeletemysql> use db_name;
mysql> source backup-file.sql;