我对 sql server 有一定的了解,但由于公司的要求,我现在在 MySQL 上工作。是否可以在指定列之前添加一列。
其实我试过这个逻辑
alter table marks add telugu int after typeofexam;
它有效。当我尝试执行以下逻辑时
alter table marks add telugu int before typeofexam;
其中marks 是表名,telugu 是列名,typeofexam 是列名,它显示语法错误。
你能帮我弄清楚逻辑吗?