This file contains 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
CREATE TABLE iller( | |
il_no int NOT NULL, | |
isim VARCHAR(50), | |
PRIMARY KEY (il_no) | |
); | |
CREATE TABLE ilceler( | |
ilce_no int NOT NULL, | |
isim VARCHAR(50), |