摘要: -- mysql生成uuid select uuid(); -- 替换- select replace(uuid(),'-',''); 阅读全文
posted @ 2024-04-01 17:19 一隅桥畔 阅读(5) 评论(0) 推荐(0) 编辑
摘要: -- sql server生成uuid select newid(); -- 替换- select replace(newid(),'-',''); 阅读全文
posted @ 2024-04-01 17:17 一隅桥畔 阅读(34) 评论(0) 推荐(0) 编辑
摘要: -- oracle生成uuid select sys_guid() from dual; -- 解决乱码 select rawtohex(sys_guid()) from dual; 阅读全文
posted @ 2024-04-01 17:16 一隅桥畔 阅读(39) 评论(0) 推荐(0) 编辑