By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
select version();
version() |
---|
8.4.3 |
create table users (
id varchar(36) primary key not null, -- MySQL lacks a true UUID type
name varchar(255) not null
);
insert into users (id, name) values (
'1a7c47d6-df25-11ef-8c90-bfa3f6c969ff',
'wtf'
);
select * from users where id = 1; -- A number!;
id | name |
---|---|
1a7c47d6-df25-11ef-8c90-bfa3f6c969ff | wtf |