gpt4 book ai didi

java - 如何在mysql for java中创建存储过程?

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

这是我的代码:

 DELIMITER $$
begin
declare var a int;
set a="select biology from app.students where studname="ganesh";
select concat('the student name is' a);
end$$

我想在 mysql 中为 java 创建 storeprodure。在上面的代码中,我在开始后给出了任何东西,它显示错误。我不太擅长存储过程。

最佳答案

试试这个,你在 "ganesh" 和 concat 函数 , 中有错误

DELIMITER $$
begin
declare var a int;
set a="select biology from app.students where studname='ganesh'";
select concat('the student name is', a);
end$$

关于java - 如何在mysql for java中创建存储过程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20840528/

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