Answers for "drop table column in mysql"

SQL
8

mysql drop column

ALTER TABLE `claims_user_settings` DROP COLUMN `super_user`;
Posted by: Guest on September-16-2020
2

how to DROP a table in mysql

-- 'DROP TABLE' followed by the name of the table you would like
-- to drop.
DROP TABLE `test_table`;
Posted by: Guest on February-18-2020
0

delete table in mysql

delete table query

DROP TABLE <table name;
e.g. DROP TABLE students;
Posted by: Guest on October-04-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language