mysql执行自定义函数语句怎么写?
发布网友
发布时间:2022-04-08 03:31
我来回答
共3个回答
热心网友
时间:2022-04-08 05:01
begin//开始事务
select * from table for update
程序执行
update table set xxx=xxx where id=xx
commit//没有报错的话就提交
rollback//有报错的话就回滚
热心网友
时间:2022-04-08 06:19
DELIMITER $$
DROP FUNCTION IF EXISTS `sp_test`.`getdate`$$
CREATE FUNCTION `sp_test`.`getdate`(gdate datetime) RETURNS varchar(255)
BEGIN
DECLARE x VARCHAR(255) DEFAULT '';
SET x= date_format(gdate,'%Y年%m月%d日%h时%i分%s秒');
RETURN x;
END $$
DELIMITER ;
热心网友
时间:2022-04-08 07:53
select 函数名(参数)