S.No Name Organization
1 Jhon XXXx
2 zzzz
我希望结果为John组织为zzzz
同时选择表格反对' Jhon'我希望组织表的返回值应该是ZZZZ。我应该覆盖旧的组织。
答案 0 :(得分:1)
drop table t
go
create table t (id int, name varchar(10), organisation varchar(10))
go
truncate table t
insert into t values
(1,'n1','o1'),(2,null,'o2'),(3, null, 'o3'),(4,'n2','o4'),(5,null,'o5')
要使用先前的非空名称覆盖空名称,然后使用相关子查询查找以前的名称将如下所示
select t.id,
(select t2.name from t t2 where t2.name is not null and t2.id = (select max(id) from t t3 where t3.name is not null and t3.id < t.id)) name,
t.organisation
from t
where name is null
result
id name organisation
----------- ---------- ------------
2 n1 o2
3 n1 o3
5 n2 o5
(3 row(s) affected)
反过来找到下一个组织
select t.id,t.name,
(select t2.organisation from t t2 where t2.name is null and t2.id = (select min(id) from t t3 where t3.name is null and t3.id > t.id)) organisation
from t
where name is not null
Result
id name organisation
----------- ---------- ------------
1 n1 o2
4 n2 o5
(2 row(s) affected)
两种结果都符合您的要求(当然完全不同)
答案 1 :(得分:0)
这是你想要的吗?
update<tablename>
set Name='JHON'
where name is null
答案 2 :(得分:0)
一个简单的sql案例应该可以帮助你确定名称是jhon,然后将相应的组织设置为'zzzz',如果name不是'Jhon',那么将分配默认组织
select
name,
[organization] = case
when name = 'Jhon' then 'zzzz'
else organization
end
from tablename