Skip to content

Instantly share code, notes, and snippets.

@ashishtajane
ashishtajane / MySQL summary
Last active August 29, 2015 14:02
MySQL summary
-- Creation
create table <tablename> (A1 D1,
A2 D2 not null,
primary key (A1),
foreign key (A2)refrences <tablename>)
create table temp_account like account
insert into <tablename> value ('','');