Skip to content

Instantly share code, notes, and snippets.

View melihkocaturk's full-sized avatar

Melih melihkocaturk

View GitHub Profile
@melihkocaturk
melihkocaturk / turkce_isimler.sql
Created October 11, 2016 12:27 — forked from ismailbaskin/turkce_isimler.sql
Türkçe isim veritabanı
-- Turkce isimler sozlugu twitter : http://twitter.com/tserpico
CREATE TABLE `isimler` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`isimler` varchar(255) DEFAULT NULL,
`cinsiyet` varchar(255) DEFAULT NULL COMMENT 'erkek : E , kadın : K , uniseks : U',
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
-- ----------------------------