gpt4 book ai didi

mysql - 无法让我的存储过程在 MySQL 上执行

转载 作者:太空宇宙 更新时间:2023-11-03 12:30:54 25 4
gpt4 key购买 nike

我尝试创建最简单的程序,但仍然无法执行。

create procedure sp_getinfo()
begin
SELECT * FROM `metals`
end

我收到这个错误:

ERROR #1064 - 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 '' at line 4

最佳答案

尝试这样的事情:

DELIMITER //
CREATE PROCEDURE sp_getinfo()
BEGIN
SELECT * FROM `metals`;
END //
DELIMITER ;

我不太了解 MySQL,我只是用 Google 搜索了一个教程并找到了 this .

关于mysql - 无法让我的存储过程在 MySQL 上执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15442842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com