Help for this page

Select Code to Download


  1. or download this
    my $grammar = q{
       startrule:              create_table_syntax
    ...
       column_attributes:     key_or_not_null
       key_or_not_null:       primary(?) 'KEY'
    }
    
  2. or download this
    <key_or_not_null_spec> ::= 
      [PRIMARY] KEY 
    | NOT NULL [WITH DEFAULT]
    
  3. or download this
    primary:    'primary'