我的 SQL 脚本在 MySQL Workbench 中成功运行。
以下给出了错误:
$link = mysqli_connect(***********);
$result = $link->query($sql);
SQL 脚本执行一些操作,包括:
- 创建临时表
- 截断表
- 删除表
- 插入
- 选择
执行此操作时出现错误:
-- 1.1 Creating temporary table for categories
drop table if exists exp_categories; -- just in case
create temporary table exp_categories
(
ID bigint not null,
Categories text not null,
PRIMARY KEY (ID)
) DEFAULT CHARSET=utf8;
-- 1.2 Inserting data...
-- few other statements here
-- last statement is SELECT
mysqli 是否有我遇到的限制?