本文介绍了如何在插入值后立即在表的最后设置行值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
create table callRecords
(
srNo int identity(1,1),
mode varchar(20)
)
<pre lang="sql">
insert into callRecords values ('Email')
insert into callRecords values ('Telephone')
insert into callRecords values ('Others')
insert into callRecords values ('fax')
insert into callRecords values ('paper')
select * from callRecords
</pre>
$上面查询的b $ b输出是
srNo模式
1电子邮件
2电话
3其他
4传真
5张纸
但我想要'其他'的价值在表格的最后,即使进一步插入值后
srNo模式
1电子邮件
2电话
3传真
4纸
5其他
有没有办法做到这一点???
output of above query is
srNomode
1Email
2Telephone
3Others
4fax
5paper
but i want that 'others' value at last of table even after further inserting values
srNomode
1Email
2Telephone
3fax
4paper
5Others
is there any way to do this ???
推荐答案
SELECT *
FROM callRecords
ORDER BY CASE WHEN SrNo=3 THEN 1 ELSE 0 END, SrNo
这篇关于如何在插入值后立即在表的最后设置行值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!