create procedure Jack_count_cur_dual() BEGIN ); ; DECLARE mycur CURSOR for SELECT table_name FROM tt_countrows; ; DROP TABLE IF EXISTS tt_countrows;#删除,创建临时表 CREATE TEMPORARY TABLE tt_countrows( table_name ), table_count int ); INSERT into tt_countro…
一.背景: 用Mybatis+mysql的架构做开发,大家都知道,Mybatis内置参数,形如#{xxx}的,均采用了sql预编译的形式,举例如下: <select id=”aaa” parameterType=”int” returnType=”Blog”> select * from blog where id = #{id} </select> 查看日志后,会发现这个sql执行时被记录如下: select * from blog where id =? 之前上网查过一些资料,…