根據社會安全號碼碼取得此CID戶籍所在地

來源:互聯網
上載者:User

第一版比較粗略

 

http://blog.csdn.net/happyflystone/archive/2008/07/23/2700649.aspx

 

 這次收錄比較詳細 ,並且形成表格放在DB中

 

需要的朋友可以到我的資源裡下載使用

http://download.csdn.net/user/happyflystone

 

其實也沒有什麼技術含量

 

  1. ------------------------------------
  2. -- Author:Flystone 
  3. -- Version:V1.001  
  4. -- Date:2008-08-04 21:56:11
  5. -- 轉載註明出處
  6. ------------------------------------
  7. alter function f_getinfo(@cid varchar(18))
  8. returns varchar(100)
  9. as
  10. begin
  11.     --不做合法性檢測
  12.     declare @s varchar(100)
  13.     select @s = isnull(@s ,'') + case when descrp = '縣' then '' else descrp end
  14.     from sfz_info 
  15.     where dm = left(@cid,2) +'0000' or dm = left(@cid,4) +'00' or dm = left(@cid,6)
  16.     order by dm
  17.     return @s
  18. end
  19. go
  20. select dbo.f_getinfo('110229')
  21. /*                                                                                                   
  22. ---------------------------------------------------------------------------------------------------- 
  23. 北京市延慶縣
  24. (所影響的行數為 1 行)
  25. */
  26. select dbo.f_getinfo('110102')
  27. /*
  28. ---------------------------------------------------------------------------------------------------- 
  29. 北京市市轄區西城區
  30. (所影響的行數為 1 行)
  31. */
  32. select dbo.f_getinfo('431229')
  33. /*
  34. ---------------------------------------------------------------------------------------------------- 
  35. 湖南省懷化市靖州苗族侗族自治縣
  36. (所影響的行數為 1 行)
  37. */

 

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.