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
0
Answer:
- CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, ...
- INSERT INTO table_name (column_list) VALUES (column_values);
- SELECT {attribute}+
- FROM {table}+
- [ WHERE {boolean predicate to pick rows} ]
- [ ORDER BY {attribute}+ ];
- DELETE FROM table_name WHERE condition
- DROP TABLE table_name;
Like and Mark as Brainliest, it really motivates!
Similar questions
English,
2 months ago
India Languages,
2 months ago
Math,
5 months ago
English,
5 months ago
Math,
1 year ago