gpt4 book ai didi

php - MySQL alter table 查询的正确语法是什么?

转载 作者:行者123 更新时间:2023-11-29 01:28:24 26 4
gpt4 key购买 nike

当我尝试运行以下 mysqli 调用时

$strSQL3=mysqli_query($connection," alter table mark_list add column 'mark' int(2) " ) or die(mysqli_error($connection));

返回错误

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near `mark int(2)` at line 1

最佳答案

单引号 (') 表示字符串文字。对象名称(例如列)不是字符串 - 只是去掉了引号:

$strSQL3 = mysqli_query($connection ,"alter table mark_list add column mark int(2)" ) or die(mysqli_error($connection));

关于php - MySQL alter table 查询的正确语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28912735/

26 4 0