加拿大各省地区

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加拿大各省地区相关的知识,希望对你有一定的参考价值。

  1. # This will create and then populate a mysql table with a list of the names and
  2. # ISO code abbreviations for the provinces and territories of Canada.
  3.  
  4.  
  5. CREATE TABLE `ca_provinces` (
  6. `name` VARCHAR( 255 ) NOT NULL ,
  7. `iso` CHAR( 2 ) NOT NULL
  8. );
  9.  
  10. INSERT INTO `ca_provinces` (`id`, `name`, `iso`)
  11. (NULL, 'Alberta', 'AB'),
  12. (NULL, 'British Columbia', 'BC'),
  13. (NULL, 'Manitoba', 'MB'),
  14. (NULL, 'New Brunswick', 'NB'),
  15. (NULL, 'Newfoundland and Labrador', 'NL'),
  16. (NULL, 'Northwest Territories', 'NT'),
  17. (NULL, 'Nova Scotia', 'NS'),
  18. (NULL, 'Nunavut', 'NU'),
  19. (NULL, 'Ontario', 'ON'),
  20. (NULL, 'Prince Edward Island', 'PE'),
  21. (NULL, 'Quebec', 'QC'),
  22. (NULL, 'Saskatchewan', 'SK'),
  23. (NULL, 'Yukon', 'YT');

以上是关于加拿大各省地区的主要内容,如果未能解决你的问题,请参考以下文章