Help for this page

Select Code to Download


  1. or download this
    create table `table name`(
       `field name1` type1 not null default 'x',
    ...
       primary key (`pk name`),
       key `key name` (`field name1`, `field name2`)
    ) engine=other things here;
    
  2. or download this
    create table `table_name`(
       `field_name1` type1 not null default 'x',
    ...
       primary key (`pk_name`),
       key `key_name` (`field_name1`, `field_name2`)
    ) engine=other things here;
    
  3. or download this
      m/`\w+\s+\w+[\s+\w+]+`/  # backticks