Answers for "create new column if value exists in other column"

SQL
-2

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 "create new column if value exists in other column"

Code answers related to "SQL"

Browse Popular Code Answers by Language