函数包括数学函数、字符串函数、日期和时间函数、条件判断函数、系统信息函数、加密函数、格式化函数等。通过这些函数,可以简化用户的 *** 作。
在MySQL——函数的使用方法与MySQL内部函数的使用方法一样。
DELIMITER $$CREATE FUNCTION `ChkInsert`(in_pk int) returns int
begin
declare _count int
declare _returnValue int
set _count = 0
select count(列1) into _count from 你的表 where 列1 = in_pk
if _count >0 then
set _returnValue = 2
else
insert into 你的表 ( 列1 ) values ( in_pk )
set _returnValue = 0
end if
return _returnValue
end $$
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)