Tuesday, March 10, 2015

CRUD operations in SQL

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:

1 comment:

  1. Import from file:

    mysql> use db_name;
    mysql> source backup-file.sql;

    ReplyDelete