首页 > 数据库 > MySQL > 正文

sql语句:SQLServer字段排序(按笔画,拼音,拼音首字母)

2024-07-24 12:41:56
字体:
来源:转载
供稿:网友

--按笔画排序

  1. select ChannelID,ChannelName from dbo.HB_AdChannel order by ChannelName collate chinese_prc_stroke_cs_as_ks_ws 

--按拼音排序

  1. select ChannelID,ChannelName+Description from dbo.HB_AdChannel order by ChannelName+Description collate chinese_prc_cs_as_ks_ws 

--sql如何让中文名字按 名字第一个字的拼音首字母排序

  1. select isnull(b.py,upper(left(a.ChannelName+a.Description,1))) as py 
  2.  
  3. ,a.ChannelName+a.Description as ChannelName 
  4.  
  5. from dbo.HB_AdChannel a 
  6.  
  7. left outer join ( 
  8.  
  9. select 'A' as PY,N'' as word, N'啊' as sword 
  10.  
  11. union select 'B',N'簿',N'' 
  12.  
  13. union select 'C',N'',N'簿' 
  14.  
  15. union select 'D',N'',N'' 
  16.  
  17. union select 'E',N'',N'' 
  18.  
  19. union select 'F',N'',N'' 
  20.  
  21. union select 'G',N'',N'' 
  22.  
  23. union select 'H',N'',N'' 
  24.  
  25. union select 'J',N'',N'' 
  26.  
  27. union select 'K',N'',N'' 
  28.  
  29. union select 'L',N'',N'' 
  30.  
  31. union select 'M',N'',N'' 
  32.  
  33. union select 'N',N'',N'' 
  34.  
  35. union select 'O',N'',N'' 
  36.  
  37. union select 'P',N'曝',N'' 
  38.  
  39. union select 'Q',N'',N'曝' 
  40.  
  41. union select 'R',N'',N'' 
  42.  
  43. union select 'S',N'',N'' 
  44.  
  45. union select 'T',N'',N'' 
  46.  
  47. union select 'W',N'',N'' 
  48.  
  49. union select 'X',N'',N'' 
  50.  
  51. union select 'Y',N'',N'' 
  52.  
  53. union select 'Z',N'',N'' 
  54.  
  55. ) b on left(ChannelName+a.Description,1) between b.sword and b.word 
  56.  
  57. order by py 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表