All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.sql.V005__COLUMNPROTO.sql Maven / Gradle / Ivy

The newest version!
use OBJECTOS_SQL;

create table COLUMNPROTO (

  INT_AUTO_COLUMN int not null auto_increment,
  TINYINT_COLUMN TINYINT not null,
  DATE_COLUMN date not null,
  CHAR_COLUMN char(4) not null,
  VARCHAR_COLUMN varchar(16),

  primary key (INT_AUTO_COLUMN)
  
) engine=InnoDB;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy