Skip to content

Instantly share code, notes, and snippets.

View denizme's full-sized avatar

Mehmet Deniz denizme

  • istanbul
  • 22:37 (UTC -12:00)
View GitHub Profile
create database IlilceDB;
Go
USE IlilceDB
create table Iller(
IlID int not null primary key identity(1,1),
Il nvarchar(100)
)
create table Ilceler(
[
{
"cityId": 1,
"plateCode": 1,
"cityName": "Adana",
"towns": [
{
"townId": 1,
"townName": "Aladağ"
},
[
{
"townId": 1,
"townName": "Aladağ"
},
{
"townId": 2,
"townName": "Ceyhan"
},
{
@denizme
denizme / Türkiye İlçe Listesi Json
Last active May 30, 2018 13:30
Türkiye ilçe listesi, plaka kodu ile birlikte, json formatında
[
{
"townId": 1,
"plateCoe": 1,
"townName": "Aladağ"
},
{
"townId": 2,
"plateCoe": 1,
"townName": "Ceyhan"
@denizme
denizme / Türkiye İl Listesi Json
Created May 30, 2018 13:16
Türkiye il listesi json formatında
[
{
"cityId": 1,
"cityName": "Adana",
"plateCode": 1
},
{
"cityId": 2,
"cityName": "Adıyaman",
"plateCode": 2