会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
北纬28.33
Enjoy in coding~!
博客园
首页
新随笔
联系
管理
订阅
2010年3月17日
表中有A B C三列,用SQL语句实现:当A列大于B列时选择A列否则选择B列,当B列大于C列时选择B列否则选择C列
摘要: if object_Id('testTb')is not null drop table testTbgocreate table testTb (A int , B int ,C int)insert into testTbselect 1,2,3 union allselect 1,3,2 union allselect 2,1,3 union allselect 3,1,4select (...
阅读全文
posted @ 2010-03-17 19:28 北纬28.33
阅读(1049)
评论(0)
推荐(0)
编辑
公告