Answers for "add sql column to table if it does not exist"

SQL
-1

add column if not exists

ALTER TABLE test ADD COLUMN IF NOT EXISTS column_a VARCHAR(255);
ALTER TABLE test MODIFY IF EXISTS column_a VARCHAR(255);
Posted by: Guest on April-15-2021

Code answers related to "add sql column to table if it does not exist"

Code answers related to "SQL"

Browse Popular Code Answers by Language