Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 542 Bytes

File metadata and controls

11 lines (10 loc) · 542 Bytes

Creating-shirts_db-by-using-MYSQL

For creating Shirts table in Mysql i am using some important commands.

  1. CREATE DATABASE — creates a new database.
  2. USE — selects a simple database and then performs operations on it using the in-built commands.
  3. CREATE TABLE — creates a new table.
  4. SELECT — extracts data from a database.
  5. INSERT INTO — inserts new data into a database.
  6. WHERE — filtering records in a table.
  7. UPDATE — modify the existing records in a table.
  8. DELETE — deletes existing records in a table