这个mybatis的mysql语句该怎么改?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了这个mybatis的mysql语句该怎么改?相关的知识,希望对你有一定的参考价值。
isbn是一个数组, 内容是("4","6","1","4","8")
这个运行错误
但是这样运行正确.
怎样才能将isbn格式改为上图中红框的格式 ?
嗯...没有办法的办法...我正在做.
参考技术A open=" (' " colse=" ') "追问不行啊...
追答open=" ' " close=" ' "
foreach里面 #isbn+0
不行. 能不能加个QQ说一下?
2920631480
mysql存储过程 把SQL语句返回结果赋给一个变量,该SQL语句返回的结果不止一条,该怎么写,新手,求指教!
BEGIN
declare a int default 1;
set a=x;
select userid into @b from userinfo where deptid=a;
select userid,salary from salaryinfo where userid=@b;
END
存储过程如上,第一条SQL语句查询出的结果不止一条 应该怎么改?求大神指教!
如果数据量小的话,导入excel里再导到mysql也好 参考技术B 你可以建一个临时表,吧这些数据全存进去
用这条语句
select into 参考技术C 两条合成一条sql:
select A.userid , B.salary from userinfo A inner join salaryinfo B on A.userid=B.userid where A.deptid=a追问
额 我就是把一条拆两天看看效果的...
追答BEGIN
declare a int default 1;
set a=x;
declare @b table(userid int);
insert into @b select userid from userinfo where deptid=a;
select userid ,salary from eWL_Role where userid in (select * from @b);
END
这个怎么样,满意不?
额 提示说
declare @b table(userid int);
insert into @b select userid from userinfo where deptid=a;附近有语法错误...
select userid ,salary from salaryinfo where userid in (select * from @b);
本回答被提问者采纳 参考技术D 你可以运用java的List接口动态存取你要输出的参数,这不仅只是数据库语句,要用到java追问额 存储过程要用java吗?
追答我以为你在制作jsp呢!
第5个回答 2011-12-29 select userid,salary from salaryinfo where userid in(select userid from userinfo where deptid=@a)
或:
select userid,salary from salaryinfo where exists(
select userid from userinfo where deptid=@a and userinfo.userid=salaryinfo.userid)
推荐第二种,因为exists系统会根据索引进行搜索
以上是关于这个mybatis的mysql语句该怎么改?的主要内容,如果未能解决你的问题,请参考以下文章
在mybatis中insert语句必须插入表中的全部字段吗??
mysql存储过程 把SQL语句返回结果赋给一个变量,该SQL语句返回的结果不止一条,该怎么写,新手,求指教!
这个查询语句查询出来的数据会显示多条重复的,但是实际表中数据又只有一条,是啥问题?该怎么改?