Answers for "what happens to alter table add column if column exists"

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 "what happens to alter table add column if column exists"

Code answers related to "SQL"

Browse Popular Code Answers by Language