Computer Science, asked by balgotraishika, 1 month ago

IAL No....
SQL Commands
1. Use SQL command to create a table with specified columns
2. Use SQL command to insert data into a table.
3. Use SQL command to retrieve data from existing table.
4. Use SQL command to delete records from a table.
5. Use SQL command to drop an existing table.​

Answers

Answered by singhanshuman1020
0

Answer:

  1. CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, ...
  2. INSERT INTO table_name (column_list) VALUES (column_values);
  3. SELECT {attribute}+
  4. FROM {table}+
  5. [ WHERE {boolean predicate to pick rows} ]
  6. [ ORDER BY {attribute}+ ];
  7. DELETE FROM table_name WHERE condition
  8. DROP TABLE table_name;

Like and Mark as Brainliest, it really motivates!

Similar questions