Computer Science, asked by Anonymous, 1 year ago

write down the delete command for deleting a database "employees" in Mysql

Don't spam it!
pz help​

Answers

Answered by Nitinsingh192
2

Answer:

1. DELETE FROM `table_name` tells MySQL server to remove rows from the table ..

2. [WHERE condition] is optional and is used to put a filter that restricts the number of rows affected by the DELETE query.

Answered by dreadwing0
1

Answer:

hey buddy here's your answer:-

drop database employees;

used to delete database

delete from employees;

used to delete one or multiple rows from the database

hope it helps you

#rose

;)

Similar questions