What SQL command can be used to delete columns from a table?
What SQL command can be used to delete columns from a table?
ٹیبل سے کالم حذف کرنے کے لیے کون سی ایس کیو ایل کمانڈ استعمال کی جا سکتی ہے؟
Explanation
- This is the standard SQL syntax to drop a column from a table.
- The ALTER TABLE statement is used to modify the structure of a table, and the DROP COLUMN clause is used to delete a column.
- An example: ALTER TABLE MyTable DROP COLUMN MyColumn;