使用mysql版本为8.1.0
建表时设置
create table test(uuid varchar(100) NOT NULL default (uuid()) ,aaaa varchar(100) not null default (uuid()) ,primary key(uuid)
);
可以看到主键和普通列都可以设置,但是要注意uuid()要加上括号,否则会报错
修改时设置
ALTER TABLE test MODIFY uuid VARCHAR(36) DEFAULT (uuid());
ALTER TABLE test MODIFY aaaa VARCHAR(36) DEFAULT (uuid());
同样注意要添加括号
使用自定义函数
目前没有使用默认值的方式设置成功过,mysql好像不支持使用自定义函数作为默认值
CREATE FUNCTION custom_function_name()
RETURNS int
DETERMINISTIC
BEGINRETURN 1;
END;
ALTER TABLE test MODIFY aaaa VARCHAR(36) DEFAULT (custom_function_name());
会报错 3770 - Default value expression of column 'aaaa' contains a disallowed function: custom_function_name.
而使用其他内置函数,如length、concat等是可以的
这时应该只能使用触发器了,需要注意的是,在设置默认值时,只要能不使用触发器,就一定不要使用
CREATE FUNCTION custom_function_name()
RETURNS int
DETERMINISTIC
BEGINRETURN 1;
END;create trigger tri_test_uuid
before insert on test
for each ROW
BEGINSET new.aaaa=custom_function_name();
END
;
参考帖子https://forums.mysql.com/read.php?152,688554,688554#msg-688554