Skip to content

Instantly share code, notes, and snippets.

View batuhan's full-sized avatar
📟

batuhan içöz batuhan

📟
View GitHub Profile
CREATE TABLE IF NOT EXISTS `tr_city` (
`id` int(3) NOT NULL,
`name` varchar(50) NOT NULL,
UNIQUE KEY `id_town` (`id`)
);
INSERT INTO `tr_city` (`id`, `name`) VALUES
(1, 'Adana'),