Which of the following is correct syntax for MySql query to delete the Field from table- * 1 point
1 )ALTER table TableName DELETE FieldName ;
2)A LTER table TableName DROP FieldName ;
3)ALTER table TableName DELETE Column FieldName ;
4)None of the Above
Answers
Answered by
1
Answer:
SQL Drop Column Syntax
ALTER TABLE "table_name" DROP "column_name";
ALTER TABLE "table_name" DROP COLUMN "column_name";
ALTER TABLE Customer DROP Birth_Date;
ALTER TABLE Customer DROP COLUMN Birth_Date;
ALTER TABLE Customer DROP COLUMN Birth_Date;
Explanation:
Answered by
0
Answer:
bruh
Explanation:
bruh
Similar questions