create or replace function fn_test2(tablename in varchar2) return number is rtn number; begin --通用的获取表的数据长度的函数 --执行的语句不是固定的,通过参数组合成的 --解决如何执行动态语句 execute immediate ' select count(1) from ' ||tablename into rtn; ---拼接语句时 from后面要记得加空格 return(rtn); --捕获…
函数: 1 create or replace function fn_test(tablename in varchar2) return number is sqls ); rtn ):; begin --获取学生表的记录条数 --select count(*) into rtn from student; sqls:='select count(*) from ' || tablename; execute immediate sqls into rtn; dbms_output.put_…
MySQL数据库-条件语句.循环语句.动态执行SQL语句 1.if条件语句 delimiter \\ CREATE PROCEDURE proc_if () BEGIN ; THEN ; ELSEIF i THEN ; ELSE ; END IF; END\\ delimiter ; 2.循环语句 while循环 delimiter \\ CREATE PROCEDURE proc_while () BEGIN DECLARE num INT ; ; DO SELECT num ; ; END…