uniquejava / blog

My notes regarding the vibrating frontend :boom and the plain old java :rofl.
Creative Commons Zero v1.0 Universal
11 stars 5 forks source link

h2 database #258

Open uniquejava opened 5 years ago

uniquejava commented 5 years ago
create table facets(
uid varchar(16) not null primary key,
pid varchar(16) default '0',
name varchar(64)
)

insert into facets values
('1', '0','hello1'),
('2', '1','hello2'),
('3', '2','hello3'),
('4', '2','hello4'),
('5', '1','hello5'),
('6', '0','world1'),
('7', '0','that1');