Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有“唯一”列的 MySQL 表,我偶尔需要在其中插入一些数据,所以我想知道是否有任何关键字可以传递,以便 mysql 生成表中尚不存在的唯一字符串? 我真的不会更改架构,因为它已经被填充了。
你可以试试 uuid()。这应该返回一个唯一的通用标识符。
insert into table(uniquecolumn) select uuid()