What SQL command can be used to add columns to a table?
What SQL command can be used to add columns to a table? Correct Answer ALTER TABLE TableName ADD ColumnName
To add columns to a table in SQL, you can use the ALTER TABLE TableName ADD ColumnName command. Option A is the correct choice for adding new columns to an existing table. Options B, C, and D do not represent the standard SQL syntax for adding columns.
মোঃ আরিফুল ইসলাম
Feb 20, 2025