编号唯一mysql脚本
drop PROCEDURE if EXISTS getSequence;drop TABLE if EXISTS tb_sequence;create PROCEDURE getSequence(in nus BIGINT)beginDECLARE seqid BIGINT DEFAULT 0;DECLARE datet VARCHAR(50) DEFAULT '';create table if not EXISTS tb_sequence(`i...