Skip to content

Instantly share code, notes, and snippets.

View FlavaSava7's full-sized avatar

Abdullah Imran FlavaSava7

  • Amman, Jordan
View GitHub Profile
CREATE TABLE `cities` (
`id` int NOT NULL ,
`city_name` varchar(100) NOT NULL default '',
`country_id` varchar(3) NOT NULL,
PRIMARY KEY (`id`),
FOREIGN KEY (`country_id`) REFERENCES countries(`country_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `countries`
@FlavaSava7
FlavaSava7 / countries_nationalities_arabic_english.sql
Last active April 9, 2024 14:57
SQL Countries & Nationalities List : English and Arabic
CREATE TABLE `countries` (
`country_code` varchar(2) NOT NULL default '',
`country_enName` varchar(100) NOT NULL default '',
`country_arName` varchar(100) NOT NULL default '',
`country_enNationality` varchar(100) NOT NULL default '',
`country_arNationality` varchar(100) NOT NULL default '',
PRIMARY KEY (`country_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `countries`