一、什么是UUID:
由一组32位数的16进制数字所构成, UUID是指在一台机器上生成的数字,它保证对在同一时空中的所有机器都是唯一的。通常平台会提供生成的API。 UUID由以下几部分的组合: (1)当前日期和时间,UUID的第一个部分与时间有关,如果你在生成一个UUID之后,过几秒又生成一个UUID,则第一个部分不同,其余相同。 (2)时钟序列。 (3)全局唯一的IEEE机器识别号,如果有网卡,从网卡MAC地址获得,没有网卡以其他方式获得。
二、 sql语句的执行结果展示:
1. select uuid() as uuid;
2. select replace(uuid(),"-","") as uuid;
3. select date_format(now(),'%Y-%m-%d %H:%m:%s') as uuid;
4. select date_format(now(),'%Y-%m-%d-%H-%m-%s') as uuid;
5. select date_format(now(),'%Y%m%d%H%m%s') as uuid;
执行结果:
-
sql语句: select uuid() as uuid; 生成UUID串 -
sql语句:select replace(uuid(),“-”,“”) as uuid; 替换掉uuid串中的“-” -
sql语句:select date_format(now(),‘%Y-%m-%d %H:%m:%s’) as uuid; 按指定格式生成日期 -
sql语句:select date_format(now(),‘%Y-%m-%d-%H-%m-%s’) as uuid; 按指定格式生成日期 -
sql语句:select date_format(now(),‘%Y%m%d%H%m%s’) as uuid; 按指定格式生成日期
三、应用:
可以将以上五种查询语句去掉select关键 将中间部分作为表的id值插入表中,如下示例:
INSERT INTO `ylsc_db`.`t_spot_goods` (
`goods_id`,
`type_id`,
`goods_name`,
`goods_code`,
`stock`,
`unit_price`,
`whole_order`,
`buyout_price`,
`minimum_code`,
`incremental_unit`,
`delivery_method`,
`validity_time`,
`settlement_method`,
`storage_place`,
`storage_city_code`,
`storage_city_name`,
`brand`,
`goods_describe`,
`material`,
`specifications`,
`img_url`,
`production_place`,
`state`,
`is_home_page`,
`goods_name_id`,
`is_del`,
`create_id`,
`create_time`,
`update_id`,
`update_time`
)
VALUES
(
uuid(),
'9',
'杉木原料111234',
'',
'100',
'2000',
'1',
'1',
'100',
'100',
NULL,
'2022-10-07',
'1',
'天津保税区',
'120100',
'天津市,天津市',
'俄罗斯牌',
'卖的是橡胶哦',
'纯木',
'155X80',
'',
'俄罗斯',
'1',
'1',
'4619',
'0',
'1',
'2022-04-29 21:50:21',
'1',
'2022-04-29 21:50:58'
);
|