MySQL - Drop Table
This statement is used to drop the entire table with all its values.
SYNTAX
DROP TABLE table_name;
-------RESULT---------
# Entire table gets deleted
In case,if we do not need to delete the entire table we can make use of following syntax.
DROP TABLE customers, suppliers;
# We can give the names of the columns we want to delete.
MySQL - Grant_ Revoke Privilege
posted on 2019-11-26 23:15:04 - mysql Tutorials
how to use range in golang
posted on 2022-05-03 08:28:11 - Go lang Tutorials
find variable type in golang
posted on 2022-05-03 05:24:55 - Go lang Tutorials