I know that with mySQL you can do:
DROP TABLE IF EXISTS tableName
However I want to do this for a column:
ALTER TABLE `tblName` DROP column IF EXISTS `importToSalesforce` ;
... which returns a SQL syntax error.
Is this not possible at all?
Thanks,
Antun