It's Not Working: ALTER TABLE table_name ADD COLUMN Marketing STRING AFTER COLUMN Detail STRING
OUTPUT: Syntax error: Expected end of input but got identifier "AFTER" at [4:82]
It's Not Working: ALTER TABLE table_name ADD COLUMN Marketing STRING AFTER COLUMN Detail STRING
OUTPUT: Syntax error: Expected end of input but got identifier "AFTER" at [4:82]
AFTER is not supported in creating DDL Statement as per this documentation. This statement works:
ALTER TABLE `<table_name>` ADD COLUMN Marketing STRING
Output:
You can just query the columns next to each other to achieve desired output.