服务器之家

服务器之家 > 正文

insert into tbl() select * from tb2中加入多个条件

时间:2019-11-08 15:33     来源/作者:mssql教程网

代码如下:


insert into warehouse(wlbm,wlmc,ys,wlgg,sybm,wlfl) select * from (select rtrim(b.bjbm) as bjbm,a.bjmc as wlmc, a.ys, a.clgg as wlgg,a.bm, 
(case a.bm when '注塑' then 2 
when '吹塑' then 43 
when '搪胶' then 3 
when '喷油' then 4 
when '车梳' then 45 
when '冲压' then 19 
when '电焊' then 31 
when '烤漆' then 37 
when '裁床' then 38 

when '丝印' then 46 
when '车缝' then 39 
when '装配' then 40 
when '包装' then 42 

end) as wlfl 
FROM (select distinct(rtrim(bjbm)) as bjbm from dbo.CP_LB where bjbm<>'' and bjbm not in (select wlbm from warehouse)) b left JOIN dbo.CP_LB a 
on rtrim(b.bjbm)=rtrim(a.bjbm)) c 

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
Nginx服务器究竟是怎么执行PHP项目
Nginx服务器究竟是怎么执行PHP项目 2019-05-24
配置IIS网站web服务器的安全策略配置解决方案
配置IIS网站web服务器的安全策略配置解决方案 2019-05-23
返回顶部