This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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 ('',''); |
NewerOlder