### $sql: '/* comment! */ create table `table name`( # another comment! `field name1` type1 not null default \'x has a blank or two\', `field name2` type2 default null, # ... primary key (`pk name`), key `key name` (`field name1`, `field name2`) ) engine=other things here; ' ### $sql: '/* comment! */ create table `table_name`( # another comment! `field_name1` type1 not null default \'x has a blank or two\', `field_name2` type2 default null, # ... primary key (`pk_name`), key `key_name` (`field_name1`, `field_name2`) ) engine=other things here; '