且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在我的SQL中创建存储过程时收到错误

更新时间:2023-02-07 11:51:30

更改名称您的参数或表格列不匹配。

目前,您正在做的说法是:

Change the names of your parameters or table columns so that they don't match.
At the moment, you are doing the equivelant of saying:
INSERT INTO Tab (X) VALUES (X);

因此系统无法判断您要执行的操作。你需要更接近的东西:

So the system can't tell what you are trying to do. You need something closer to:

INSERT INTO Tab (X) VALUES (paramX);