我正在尝试使用以下 SQL 命令插入记录
INSERT INTO my_table (foo, bar) VALUES ('test1','test2')
但是我似乎遇到了以下错误:
Command execution failed: Parameters supplied for object 'my_table' which is not a function. If the parameters are intended as a table hint, a WITH keyword is required.
它在 SQL 管理器中执行得很好,没有任何问题,但是我无法让它在 mssql_query 中执行。关于为什么阻止记录插入的任何想法?任何帮助是极大的赞赏!