Advertisement
Karellism

Most Important SQL Commands

Dec 24th, 2020
1,821
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.49 KB | None | 0 0
  1. Some of The Most Important SQL Commands
  2.  
  3.     SELECT - extracts data from a database
  4.     UPDATE - updates data in a database
  5.     DELETE - deletes data from a database
  6.     INSERT INTO - inserts new data into a database
  7.     CREATE DATABASE - creates a new database
  8.     ALTER DATABASE - modifies a database
  9.     CREATE TABLE - creates a new table
  10.     ALTER TABLE - modifies a table
  11.     DROP TABLE - deletes a table
  12.     CREATE INDEX - creates an index (search key)
  13.     DROP INDEX - deletes an index
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement