drop table if exists test.select_chain; create table test.select_chain ( id int not null auto_increment, category char(10) not null, label char(20) not null, primary key (id), index category_id (category) ); insert into test.select_chain values (null, 'forms', 'Form'); insert into test.select_chain values (null, 'form', 'action'); insert into test.select_chain values (null, 'form', 'method'); insert into test.select_chain values (null, 'form', 'enctype'); insert into test.select_chain values (null, 'form', 'accept'); insert into test.select_chain values (null, 'form', 'name'); insert into test.select_chain values (null, 'form', 'onsubmit'); insert into test.select_chain values (null, 'form', 'onreset'); insert into test.select_chain values (null, 'form', 'accept-charset'); insert into test.select_chain values (null, 'forms', 'Select'); insert into test.select_chain values (null, 'select', 'name'); insert into test.select_chain values (null, 'select', 'size'); insert into test.select_chain values (null, 'select', 'multiple'); insert into test.select_chain values (null, 'select', 'disabled'); insert into test.select_chain values (null, 'select', 'tabindex'); insert into test.select_chain values (null, 'select', 'onfocus'); insert into test.select_chain values (null, 'select', 'onblur'); insert into test.select_chain values (null, 'select', 'onchange'); insert into test.select_chain values (null, 'scripts', 'Script'); insert into test.select_chain values (null, 'script', 'charset'); insert into test.select_chain values (null, 'script', 'type'); insert into test.select_chain values (null, 'script', 'src'); insert into test.select_chain values (null, 'script', 'defer'); insert into test.select_chain values (null, 'scripts', 'Noscript'); insert into test.select_chain values (null, 'noscript', '[none]');