Before adding (ALTER) new column to table I want to check if that table exists. Because app is crashing since table is not present and we tried to add column to it.
I tried "Alter table if exist table_name add column abc" but no luck.
I want to do this in 1 query.