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

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

The newest version!
use OBJECTOS_SQL;

create table PAIR (

  ID int not null, 
  NAME varchar(120) not null

) engine=InnoDB;

insert into PAIR (ID, NAME)
values (1, "One"), (2, "Two"), (3, "Three");




© 2015 - 2025 Weber Informatics LLC | Privacy Policy