Last active
February 9, 2023 10:58
-
-
Save boubkhaled/82d1e4da67ece4470035a681da0ccecc to your computer and use it in GitHub Desktop.
الدول | Countries | Pays
This file contains hidden or 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 [dbo].[ZZZ_Countries]( | |
[Name] [nvarchar](max) NULL, | |
[Code] [nvarchar](max) NULL, | |
[Dialing] [nvarchar](max) NULL, | |
[Nom] [nvarchar](max) NULL, | |
[Code1] [nvarchar](max) NULL, | |
[Code2] [nvarchar](max) NULL, | |
[Nombre] [nvarchar](max) NULL | |
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Palestine', N'DZ', N'+213', N'Palestine', N'DZ', N'DZP', N'012') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Afghanistan', N'AF', N'+93', N'Afghanistan', N'AF', N'AFG', N'004') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Albania', N'AL', N'+355', N'Albanie', N'AL', N'ALB', N'008') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Algeria', N'DZ', N'+213', N'Algérie', N'DZ', N'DZA', N'012') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'American Samoa', N'AS', N'+1-684', N'Samoa orientales', N'AS', N'ASM', N'16') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Andorra, Principality of', N'AD', N'+376', N'Andorre', N'AD', N'AND', N'020') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Angola', N'AO', N'+244', N'Angola', N'AO', N'AGO', N'024') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Anguilla', N'AI', N'+1-264', N'Anguilla', N'AI', N'AIA', N'660') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Antarctica', N'AQ', N'+672', N'Antarctique', N'AQ', N'ATA', N'010') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Antigua and Barbuda', N'AG', N'+1-268', N'Antigua-et-Barbuda', N'AG', N'ATG', N'028') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Argentina', N'AR', N'+54', N'Argentine', N'AR', N'ARG', N'032') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Armenia', N'AM', N'+374', N'Arménie', N'AM', N'ARM', N'051') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Aruba', N'AW', N'+297', N'Aruba', N'AW', N'ABW', N'533') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Australia', N'AU', N'+61', N'Australie', N'AU', N'AUS', N'036') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Austria', N'AT', N'+43', N'Autriche', N'AT', N'AUT', N'040') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Azerbaijan or Azerbaidjan (Former Azerbaijan Soviet Socialist Republic)', N'AZ', N'+994', N'Azerbaïdjan', N'AZ', N'AZE', N'031') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bahamas, Commonwealth of The', N'BS', N'+1-242', N'Bahamas', N'BS', N'BHS', N'044') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bahrain, Kingdom of (Former Dilmun)', N'BH', N'+973', N'Bahreïn', N'BH', N'BHR', N'048') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bangladesh (Former East Pakistan)', N'BD', N'+880', N'Bangladesh', N'BD', N'BGD', N'050') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Barbados', N'BB', N'+1-246', N'Barbade', N'BB', N'BRB', N'052') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Belarus (Former Belorussian [Byelorussian] Soviet Socialist Republic)', N'BY', N'+375', N'Biélorussie', N'BY', N'BLR', N'112') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Belgium', N'BE', N'+32', N'Belgique', N'BE', N'BEL', N'056') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Belize (Former British Honduras)', N'BZ', N'+501', N'Bélize', N'BZ', N'BLZ', N'084') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Benin (Former Dahomey)', N'BJ', N'+229', N'Bénin', N'BJ', N'BEN', N'204') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bermuda', N'BM', N'+1-441', N'Bermudes', N'BM', N'BMU', N'060') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bhutan, Kingdom of', N'BT', N'+975', N'Bhoutan', N'BT', N'BTN', N'064') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bolivia', N'BO', N'+591', N'Bolivie', N'BO', N'BOL', N'068') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bosnia and Herzegovina', N'BA', N'+387', N'Bosnie-Herzégovine', N'BA', N'BIH', N'070') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Botswana (Former Bechuanaland)', N'BW', N'+267', N'Botswana', N'BW', N'BWA', N'072') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bouvet Island (Territory of Norway)', N'BV', N'', N'Bouvet (Île)', N'BV', N'BVT', N'074') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Brazil', N'BR', N'+55', N'Brésil', N'BR', N'BRA', N'076') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'British Indian Ocean Territory (BIOT)', N'IO', N'', N'Territoire britannique de l''Océan Indien', N'IO', N'IOT', N'086') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Brunei (Negara Brunei Darussalam)', N'BN', N'+673', N'Bruneï', N'BN', N'BRN', N'096') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Bulgaria', N'BG', N'+359', N'Bulgarie', N'BG', N'BGR', N'100') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Burkina Faso (Former Upper Volta)', N'BF', N'+226', N'Burkina Faso', N'BF', N'BFA', N'854') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Burundi (Former Urundi)', N'BI', N'+257', N'Burundi', N'BI', N'BDI', N'108') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cambodia, Kingdom of (Former Khmer Republic, Kampuchea Republic)', N'KH', N'+855', N'Cambodge', N'KH', N'KHM', N'116') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cameroon (Former French Cameroon)', N'CM', N'+237', N'Cameroun', N'CM', N'CMR', N'120') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Canada', N'CA', N'+1', N'Canada', N'CA', N'CAN', N'124') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cape Verde', N'CV', N'+238', N'Cap Vert', N'CV', N'CPV', N'132') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cayman Islands', N'KY', N'+1-345', N'Caïmans (Îles)', N'KY', N'CYM', N'136') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Central African Republic', N'CF', N'+236', N'République Centrafricaine', N'CF', N'CAF', N'140') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Chad', N'TD', N'+235', N'Tchad', N'TD', N'TCD', N'148') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Chile', N'CL', N'+56', N'Chili', N'CL', N'CHL', N'152') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'China', N'CN', N'+86', N'Chine', N'CN', N'CHN', N'156') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Christmas Island', N'CX', N'+53', N'Christmas (Île)', N'CX', N'CXR', N'162') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cocos (Keeling) Islands', N'CC', N'+61', N'Cocos / Keeling (Îles)', N'CC', N'CCK', N'166') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Colombia', N'CO', N'+57', N'Colombie', N'CO', N'COL', N'170') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Comoros, Union of the', N'KM', N'+269', N'Comores', N'KM', N'COM', N'174') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Congo, Democratic Republic of the (Former Zaire)', N'CD', N'+243', N'République Démocratique du Congo', N'CD', N'COD', N'180') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Congo, Republic of the', N'CG', N'+242', N'Congo', N'CG', N'COG', N'178') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cook Islands (Former Harvey Islands)', N'CK', N'+682', N'Cook (Îles)', N'CK', N'COK', N'184') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Costa Rica', N'CR', N'+506', N'Costa Rica', N'CR', N'CRI', N'188') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cote D''Ivoire (Former Ivory Coast)', N'CI', N'+225', N'Côte D''Ivoire', N'CI', N'CIV', N'384') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Croatia (Hrvatska)', N'HR', N'+385', N'Croatie', N'HR', N'HRV', N'191') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cuba', N'CU', N'+53', N'Cuba', N'CU', N'CUB', N'192') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Cyprus', N'CY', N'+357', N'Chypre', N'CY', N'CYP', N'196') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Czech Republic', N'CZ', N'+420', N'République Tchèque', N'CZ', N'CZE', N'203') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Czechoslavakia (Former) See CZ Czech Republic or Slovakia', N'CS', N'', N'Czechoslavakia (Former) See CZ Czech Republic or Slovakia', N'CS', N'CS', NULL) | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Denmark', N'DK', N'+45', N'Danemark', N'DK', N'DNK', N'208') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Djibouti (Former French Territory of the Afars and Issas, French Somaliland)', N'DJ', N'+253', N'Djibouti', N'DJ', N'DJI', N'262') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Dominica', N'DM', N'+1-767', N'Dominique', N'DM', N'DMA', N'212') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Dominican Republic', N'DO', N'+1-809 and +1-829 ', N'République Dominicaine', N'DO', N'DOM', N'214') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'East Timor (Former Portuguese Timor)', N'TP', N'+670', N'Timor-Oriental', N'TP', N'TMP', N'626') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Ecuador', N'EC', N'+593 ', N'Equateur', N'EC', N'ECU', N'218') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Egypt (Former United Arab Republic - with Syria)', N'EG', N'+20', N'Egypte', N'EG', N'EGY', N'818') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'El Salvador', N'SV', N'+503', N'Salvador', N'SV', N'SLV', N'222') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Equatorial Guinea (Former Spanish Guinea)', N'GQ', N'+240', N'Guinée Equatoriale', N'GQ', N'GNQ', N'226') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Eritrea (Former Eritrea Autonomous Region in Ethiopia)', N'ER', N'+291', N'Erythrée', N'ER', N'ERI', N'232') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Estonia (Former Estonian Soviet Socialist Republic)', N'EE', N'+372', N'Estonie', N'EE', N'EST', N'233') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Ethiopia (Former Abyssinia, Italian East Africa)', N'ET', N'+251', N'Ethiopie', N'ET', N'ETH', N'231') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Falkland Islands (Islas Malvinas)', N'FK', N'+500', N'Falkland / Malouines (Îles)', N'FK', N'FLK', N'238') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Faroe Islands', N'FO', N'+298', N'Féroé (Îles)', N'FO', N'FRO', N'234') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Fiji', N'FJ', N'+679', N'Fiji', N'FJ', N'FJI', N'242') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Finland', N'FI', N'+358', N'Finlande', N'FI', N'FIN', N'246') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'France', N'FR', N'+33', N'France', N'FR', N'FRA', N'250') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'French Guiana or French Guyana', N'GF', N'+594', N'Guyane française', N'GF', N'GUF', N'254') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'French Polynesia (Former French Colony of Oceania)', N'PF', N'+689', N'Polynésie française', N'PF', N'PYF', N'258') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'French Southern Territories and Antarctic Lands', N'TF', N'', N'Territoires Antarctiques français', N'TF', N'ATF', N'260') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Gabon (Gabonese Republic)', N'GA', N'+241', N'Gabon', N'GA', N'GAB', N'266') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Gambia, The', N'GM', N'+220', N'Gambie', N'GM', N'GMB', N'270') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Georgia (Former Georgian Soviet Socialist Republic)', N'GE', N'+995', N'Géorgie', N'GE', N'GEO', N'268') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Germany', N'DE', N'+49', N'Allemagne', N'DE', N'DEU', N'276') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Ghana (Former Gold Coast)', N'GH', N'+233', N'Ghana', N'GH', N'GHA', N'288') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Gibraltar', N'GI', N'+350', N'Gibraltar', N'GI', N'GIB', N'292') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Great Britain (United Kingdom)', N'GB', N'', N'Royaume-Uni', N'GB', N'GBR', N'826') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Greece', N'GR', N'+30', N'Grèce', N'GR', N'GRC', N'300') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Greenland', N'GL', N'+299', N'Groënland', N'GL', N'GRL', N'304') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Grenada', N'GD', N'+1-473', N'Grenade', N'GD', N'GRD', N'308') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Guadeloupe', N'GP', N'+590', N'Guadeloupe', N'GP', N'GLP', N'312') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Guam', N'GU', N'+1-671', N'Guam', N'GU', N'GUM', N'316') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Guatemala', N'GT', N'+502', N'Guatemala', N'GT', N'GTM', N'320') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Guinea (Former French Guinea)', N'GN', N'+224', N'Guinée', N'GN', N'GIN', N'324') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Guinea-Bissau (Former Portuguese Guinea)', N'GW', N'+245', N'Guinée-Bissau', N'GW', N'GNB', N'624') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Guyana (Former British Guiana)', N'GY', N'+592', N'Guyana', N'GY', N'GUY', N'328') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Haiti', N'HT', N'+509', N'Haïti', N'HT', N'HTI', N'332') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Heard Island and McDonald Islands (Territory of Australia)', N'HM', N'', N'Territoire des Îles Heard et McDonald', N'HM', N'HMD', N'334') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Holy See (Vatican City State)', N'VA', N'', N'Vatican', N'VA', N'VAT', N'336') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Honduras', N'HN', N'+504', N'Honduras', N'HN', N'HND', N'340') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Hong Kong', N'HK', N'+852', N'Hong Kong', N'HK', N'HKG', N'344') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Hungary', N'HU', N'+36', N'Hongrie', N'HU', N'HUN', N'348') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Iceland', N'IS', N'+354', N'Islande', N'IS', N'ISL', N'352') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'India', N'IN', N'+91', N'Inde', N'IN', N'IND', N'356') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Indonesia (Former Netherlands East Indies; Dutch East Indies)', N'ID', N'+62', N'Indonésie', N'ID', N'IDN', N'360') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Iran, Islamic Republic of', N'IR', N'+98', N'Iran (République islamique d'') ', N'IR', N'IRN', N'364') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Iraq', N'IQ', N'+964', N'Irak', N'IQ', N'IRQ', N'368') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Ireland', N'IE', N'+353', N'Irlande', N'IE', N'IRL', N'372') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Italy', N'IT', N'+39', N'Italie', N'IT', N'ITA', N'380') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Jamaica', N'JM', N'+1-876', N'Jamaïque', N'JM', N'JAM', N'388') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Japan', N'JP', N'+81', N'Japon', N'JP', N'JPN', N'392') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Jordan (Former Transjordan)', N'JO', N'+962', N'Jordanie', N'JO', N'JOR', N'400') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Kazakstan or Kazakhstan (Former Kazakh Soviet Socialist Republic)', N'KZ', N'+7', N'Kazakstan', N'KZ', N'KAZ', N'398') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Kenya (Former British East Africa)', N'KE', N'+254', N'Kenya', N'KE', N'KEN', N'404') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Kiribati (Pronounced keer-ree-bahss) (Former Gilbert Islands)', N'KI', N'+686', N'Kiribati', N'KI', N'KIR', N'296') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Korea, Democratic People''s Republic of (North Korea)', N'KP', N'+850', N'Corée (République populaire démocratique du)', N'KP', N'PRK', N'408') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Korea, Republic of (South Korea)', N'KR', N'+82', N'Corée (République démocratique du)', N'KR', N'KOR', N'410') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Kuwait', N'KW', N'+965', N'Koweït', N'KW', N'KWT', N'414') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Kyrgyzstan (Kyrgyz Republic) (Former Kirghiz Soviet Socialist Republic)', N'KG', N'+996', N'Kyrgyzstan', N'KG', N'KGZ', N'417') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Lao People''s Democratic Republic (Laos)', N'LA', N'+856', N'Laos (République populaire démocratique du)', N'LA', N'LAO', N'418') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Latvia (Former Latvian Soviet Socialist Republic)', N'LV', N'+371', N'Lettonie', N'LV', N'LVA', N'428') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Lebanon', N'LB', N'+961', N'Liban', N'LB', N'LBN', N'422') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Lesotho (Former Basutoland)', N'LS', N'+266', N'Lesotho', N'LS', N'LSO', N'426') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Liberia', N'LR', N'+231', N'Libéria', N'LR', N'LBR', N'430') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Libya (Libyan Arab Jamahiriya)', N'LY', N'+218', N'Libye (Jamahiriya Arabe Libyenne)', N'LY', N'LBY', N'434') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Liechtenstein', N'LI', N'+423', N'Liechtenstein', N'LI', N'LIE', N'438') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Lithuania (Former Lithuanian Soviet Socialist Republic)', N'LT', N'+370', N'Lithuanie', N'LT', N'LTU', N'440') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Luxembourg', N'LU', N'+352', N'Luxembourg', N'LU', N'LUX', N'442') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Macau', N'MO', N'+853', N'Macau', N'MO', N'MAC', N'446') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Macedonia, The Former Yugoslav Republic of', N'MK', N'+389', N'Macédoine (ancienne République yougoslave de)', N'MK', N'MKD', N'807') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Madagascar (Former Malagasy Republic)', N'MG', N'+261', N'Madagascar', N'MG', N'MDG', N'450') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Malawi (Former British Central African Protectorate, Nyasaland)', N'MW', N'+265', N'Malawi', N'MW', N'MWI', N'454') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Malaysia', N'MY', N'+60', N'Malaysie', N'MY', N'MYS', N'458') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Maldives', N'MV', N'+960', N'Maldives', N'MV', N'MDV', N'462') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Mali (Former French Sudan and Sudanese Republic)', N'ML', N'+223', N'Mali', N'ML', N'MLI', N'466') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Malta', N'MT', N'+356', N'Malte', N'MT', N'MLT', N'470') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Marshall Islands (Former Marshall Islands District - Trust Territory of the Pacific Islands)', N'MH', N'+692', N'Marshall (Îles)', N'MH', N'MHL', N'584') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Martinique (French)', N'MQ', N'+596', N'Martinique', N'MQ', N'MTQ', N'474') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Mauritania', N'MR', N'+222', N'Mauritanie', N'MR', N'MRT', N'478') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Mauritius', N'MU', N'+230', N'Maurice', N'MU', N'MUS', N'480') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Mayotte (Territorial Collectivity of Mayotte)', N'YT', N'+269', N'Mayotte', N'YT', N'MYT', N'175') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Mexico', N'MX', N'+52', N'Mexique', N'MX', N'MEX', N'484') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Micronesia, Federated States of (Former Ponape, Truk, and Yap Districts - Trust Territory of the Pacific Islands)', N'FM', N'+691', N'Micronésie (Etats fédérés de)', N'FM', N'FSM', N'583') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Moldova, Republic of', N'MD', N'+373', N'Moldavie', N'MD', N'MDA', N'498') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Monaco, Principality of', N'MC', N'+377', N'Monaco', N'MC', N'MCO', N'492') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Mongolia (Former Outer Mongolia)', N'MN', N'+976', N'Mongolie', N'MN', N'MNG', N'496') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Montserrat', N'MS', N'+1-664', N'Montserrat', N'MS', N'MSR', N'500') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Morocco', N'MA', N'+212', N'Maroc', N'MA', N'MAR', N'504') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Mozambique (Former Portuguese East Africa)', N'MZ', N'+258', N'Mozambique', N'MZ', N'MOZ', N'508') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Myanmar, Union of (Former Burma)', N'MM', N'+95', N'Myanmar', N'MM', N'MMR', N'104') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Namibia (Former German Southwest Africa, South-West Africa)', N'NA', N'+264', N'Namibie', N'NA', N'NAM', N'516') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Nauru (Former Pleasant Island)', N'NR', N'+674', N'Nauru', N'NR', N'NRU', N'520') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Nepal', N'NP', N'+977', N'Népal', N'NP', N'NPL', N'524') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Netherlands', N'NL', N'+31', N'Pays-Bas', N'NL', N'NLD', N'528') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Netherlands Antilles (Former Curacao and Dependencies)', N'AN', N'+599', N'Antilles néerlandaises', N'AN', N'ANT', N'530') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'New Caledonia', N'NC', N'+687', N'Nouvelle-Calédonie', N'NC', N'NCL', N'540') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'New Zealand (Aotearoa)', N'NZ', N'+64', N'Nouvelle-Zélande', N'NZ', N'NZL', N'554') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Nicaragua', N'NI', N'+505', N'Nicaragua', N'NI', N'NIC', N'558') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Niger', N'NE', N'+227', N'Niger', N'NE', N'NER', N'562') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Nigeria', N'NG', N'+234', N'Nigéria', N'NG', N'NGA', N'566') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Niue (Former Savage Island)', N'NU', N'+683', N'Niue', N'NU', N'NIU', N'570') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Norfolk Island', N'NF', N'+672', N'Norfolk (Île)', N'NF', N'NFK', N'574') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Northern Mariana Islands (Former Mariana Islands District - Trust Territory of the Pacific Islands)', N'MP', N'+1-670', N'Mariannes (Îles)', N'MP', N'MNP', N'580') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Norway', N'NO', N'+47', N'Norvège', N'NO', N'NOR', N'578') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Oman, Sultanate of (Former Muscat and Oman)', N'OM', N'+968', N'Oman', N'OM', N'OMN', N'512') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Pakistan (Former West Pakistan)', N'PK', N'+92', N'Pakistan', N'PK', N'PAK', N'586') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Palau (Former Palau District - Trust Terriroty of the Pacific Islands)', N'PW', N'+680', N'Palau', N'PW', N'PLW', N'585') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Palestinian State (Proposed)', N'PS', N'+970', N'Palestinian State (Proposed)', N'PS', N'PS', NULL) | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Panama', N'PA', N'+507', N'Panama', N'PA', N'PAN', N'591') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Papua New Guinea (Former Territory of Papua and New Guinea)', N'PG', N'+675', N'Papouasie Nouvelle-Guinée', N'PG', N'PNG', N'598') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Paraguay', N'PY', N'+595', N'Paraguay', N'PY', N'PRY', N'600') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Peru', N'PE', N'+51', N'Pérou', N'PE', N'PER', N'604') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Philippines', N'PH', N'+63', N'Philippines', N'PH', N'PHL', N'608') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Pitcairn Island', N'PN', N'', N'Pitcaïrn', N'PN', N'PCN', N'612') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Poland', N'PL', N'+48', N'Pologne', N'PL', N'POL', N'616') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Portugal', N'PT', N'+351', N'Portugal', N'PT', N'PRT', N'620') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Puerto Rico', N'PR', N'+1-787 or +1-939', N'Porto Rico', N'PR', N'PRI', N'630') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Qatar, State of', N'QA', N'+974 ', N'Quatar', N'QA', N'QAT', N'634') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Reunion (French) (Former Bourbon Island)', N'RE', N'+262', N'Réunion', N'RE', N'REU', N'638') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Romania', N'RO', N'+40', N'Romania', N'RO', N'ROM', N'642') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Russia - USSR (Former Russian Empire, Union of Soviet Socialist Republics, Russian Soviet Federative Socialist Republic) Now RU - Russian Federation', N'SU', N'', N'Russia - USSR (Former Russian Empire, Union of Soviet Socialist Republics, Russian Soviet Federative Socialist Republic) Now RU - Russian Federation', N'SU', N'SU', NULL) | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Russian Federation', N'RU', N'+7', N'Russie (Fédération de)', N'RU', N'RUS', N'643') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Rwanda (Rwandese Republic) (Former Ruanda)', N'RW', N'+250', N'Rwanda', N'RW', N'RWA', N'646') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Saint Helena', N'SH', N'+290', N'Ste Hélène', N'SH', N'SHN', N'654') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Saint Kitts and Nevis (Former Federation of Saint Christopher and Nevis)', N'KN', N'+1-869', N'Saint Kitts et Nevis', N'KN', N'KNA', N'659') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Saint Lucia', N'LC', N'+1-758', N'Sainte Lucie', N'LC', N'LCA', N'662') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Saint Pierre and Miquelon', N'PM', N'+508', N'St. Pierre et Miquelon', N'PM', N'SPM', N'666') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Saint Vincent and the Grenadines', N'VC', N'+1-784', N'Saint Vincent et Grenadines', N'VC', N'VCT', N'670') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Samoa (Former Western Samoa)', N'WS', N'+685', N'Samoa', N'WS', N'WSM', N'882') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'San Marino', N'SM', N'+378', N'San Marin', N'SM', N'SMR', N'674') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Sao Tome and Principe', N'ST', N'+239', N'Sao Tomé et Principe', N'ST', N'STP', N'678') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Saudi Arabia', N'SA', N'+966', N'Arabie Séoudite', N'SA', N'SAU', N'682') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Senegal', N'SN', N'+221', N'Sénégal', N'SN', N'SEN', N'686') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Serbia, Republic of', N'RS', N'', N'Serbia, Republic of', N'RS', N'RS', NULL) | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Seychelles', N'SC', N'+248', N'Seychelles', N'SC', N'SYC', N'690') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Sierra Leone', N'SL', N'+232', N'Sierra Léone', N'SL', N'SLE', N'694') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Singapore', N'SG', N'+65', N'Singapour', N'SG', N'SGP', N'702') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Slovakia', N'SK', N'+421', N'Slovaquie', N'SK', N'SVK', N'703') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Slovenia', N'SI', N'+386', N'Slovénie', N'SI', N'SVN', N'705') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Solomon Islands (Former British Solomon Islands)', N'SB', N'+677', N'Salomon (Îles)', N'SB', N'SLB', N'090') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Somalia (Former Somali Republic, Somali Democratic Republic)', N'SO', N'+252', N'Somalie', N'SO', N'SOM', N'706') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'South Africa (Former Union of South Africa)', N'ZA', N'+27', N'Afrique du Sud', N'ZA', N'ZAF', N'710') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'South Georgia and the South Sandwich Islands', N'GS', N'', N'Géorgie du Sud et îles Sandwich du Sud', N'GS', N'SGS', N'239') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Spain', N'ES', N'+34', N'Espagne', N'ES', N'ESP', N'724') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Sri Lanka (Former Serendib, Ceylon)', N'LK', N'+94', N'Sri Lanka', N'LK', N'LKA', N'144') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Sudan (Former Anglo-Egyptian Sudan)', N'SD', N'+249', N'Soudan', N'SD', N'SDN', N'736') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Suriname (Former Netherlands Guiana, Dutch Guiana)', N'SR', N'+597', N'Surinam', N'SR', N'SUR', N'740') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Svalbard (Spitzbergen) and Jan Mayen Islands', N'SJ', N'', N'Svalbard et Jan Mayen (Îles)', N'SJ', N'SJM', N'744') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Swaziland, Kingdom of', N'SZ', N'+268', N'Swaziland', N'SZ', N'SWZ', N'748') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Sweden', N'SE', N'+46', N'Suède', N'SE', N'SWE', N'752') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Switzerland', N'CH', N'+41', N'Suisse', N'CH', N'CHE', N'756') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Syria (Syrian Arab Republic) (Former United Arab Republic - with Egypt)', N'SY', N'+963', N'Syrie (République arabe syrienne)', N'SY', N'SYR', N'760') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Taiwan (Former Formosa)', N'TW', N'+886', N'Taïwan', N'TW', N'TWN', N'158') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Tajikistan (Former Tajik Soviet Socialist Republic)', N'TJ', N'+992', N'Tadjikistan', N'TJ', N'TJK', N'762') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Tanzania, United Republic of (Former United Republic of Tanganyika and Zanzibar)', N'TZ', N'+255', N'Tanzanie', N'TZ', N'TZA', N'834') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Thailand (Former Siam)', N'TH', N'+66', N'Thaïlande', N'TH', N'THA', N'764') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Togo (Former French Togoland)', N'TG', N'', N'Togo', N'TG', N'TGO', N'768') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Tokelau', N'TK', N'+690', N'Tokelau', N'TK', N'TKL', N'772') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Tonga, Kingdom of (Former Friendly Islands)', N'TO', N'+676', N'Tonga', N'TO', N'TON', N'776') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Trinidad and Tobago', N'TT', N'+1-868', N'Trinidad et Tobago', N'TT', N'TTO', N'780') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Tromelin Island', N'TE', N'', N'Tromelin Island', N'TE', N'TE', NULL) | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Tunisia', N'TN', N'+216', N'Tunisie', N'TN', N'TUN', N'788') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Turkey', N'TR', N'+90', N'Turquie', N'TR', N'TUR', N'792') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Turkmenistan (Former Turkmen Soviet Socialist Republic)', N'TM', N'+993', N'Turkménistan', N'TM', N'TKM', N'795') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Turks and Caicos Islands', N'TC', N'+1-649', N'Turks et Caicos (Îles)', N'TC', N'TCA', N'796') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Tuvalu (Former Ellice Islands)', N'TV', N'+688', N'Tuvalu', N'TV', N'TUV', N'798') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Uganda, Republic of', N'UG', N'+256', N'Ouganda', N'UG', N'UGA', N'800') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Ukraine (Former Ukrainian National Republic, Ukrainian State, Ukrainian Soviet Socialist Republic)', N'UA', N'+380', N'Ukraine', N'UA', N'UKR', N'804') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'United Arab Emirates (UAE) (Former Trucial Oman, Trucial States)', N'AE', N'+971', N'Emirats Arabes Unis', N'AE', N'ARE', N'784') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'United Kingdom (Great Britain / UK)', N'GB', N'+44', N'Royaume-Uni', N'GB', N'GBR', N'826') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'United States', N'US', N'+1', N'Etats-Unis d''Amérique', N'US', N'USA', N'840') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'United States Minor Outlying Islands', N'UM', N'', N'Territoires non incorporés des États-Unis ', N'UM', N'UMI', N'581') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Uruguay, Oriental Republic of (Former Banda Oriental, Cisplatine Province)', N'UY', N'+598', N'Uruguay', N'UY', N'URY', N'858') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Uzbekistan (Former UZbek Soviet Socialist Republic)', N'UZ', N'+998', N'Ouzbékistan', N'UZ', N'UZB', N'860') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Vanuatu (Former New Hebrides)', N'VU', N'+678', N'Vanuatu', N'VU', N'VUT', N'548') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Vatican City State (Holy See)', N'VA', N'+418', N'Vatican', N'VA', N'VAT', N'336') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Venezuela', N'VE', N'+58', N'Vénézuela', N'VE', N'VEN', N'862') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Vietnam', N'VN', N'+84', N'Vietnam', N'VN', N'VNM', N'704') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Virgin Islands, British', N'VI', N'+1-284', N'Vierges (Îles) - EU', N'VI', N'VIR', N'850') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Virgin Islands, United States (Former Danish West Indies)', N'VQ', N'+1-340', N'Virgin Islands, United States (Former Danish West Indies)', N'VQ', N'VQ', NULL) | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Wallis and Futuna Islands', N'WF', N'+681', N'Wallis et Futuna (Îles)', N'WF', N'WLF', N'876') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Western Sahara (Former Spanish Sahara)', N'EH', N'', N'Sahara Occidental', N'EH', N'ESH', N'732') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Yemen', N'YE', N'+967', N'Yemen', N'YE', N'YEM', N'887') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Yugoslavia', N'YU', N'', N'Yougoslavie', N'YU', N'YUG', N'891') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Zaire (Former Congo Free State, Belgian Congo, Congo/Leopoldville, Congo/Kinshasa, Zaire) Now CD - Congo, Democratic Republic of the', N'ZR', N'', N'Zaire (Former Congo Free State, Belgian Congo, Congo/Leopoldville, Congo/Kinshasa, Zaire) Now CD - Congo, Democratic Republic of the', N'ZR', N'ZR', NULL) | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Zambia, Republic of (Former Northern Rhodesia)', N'ZM', N'+260', N'Zambie', N'ZM', N'ZMB', N'894') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Zimbabwe, Republic of (Former Southern Rhodesia, Rhodesia)', N'ZW', N'+263', N'Zimbabwe', N'ZW', N'ZWE', N'716') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'France métropolitaine', N'FX', N'+33', N'France métropolitaine', N'FX', N'FXX', N'249') | |
GO | |
INSERT [dbo].[ZZZ_Countries] ([Name], [Code], [Dialing], [Nom], [Code1], [Code2], [Nombre]) VALUES (N'Vierges (Îles) - RU', N'VG', N'+33', N'Vierges (Îles) - RU', N'VG', N'VGB', N'092') | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment