编程论坛
注册
登录
编程论坛
→
SQL Server论坛
當在表1中有對應的單號是顯示表一的單號,當沒有的時候顯示表2中對應的單號
zuojianbo
发布于 2010-06-14 15:18, 364 次点击
我想要顯示,當在表1中有對應的單號是顯示表一的單號,當沒有的時候顯示表2中對應的單號。这个存储过程怎么写呀?哪位高手帮帮忙呀!
2 回复
#2
gameohyes
2010-06-14 17:31
create procedure proc_show
@参数 类型 --当要灵活使用存储过程时
as
if exists (select 单号 from 表1 where 条件)
select 单号 from 表1 where 条件
else
select 单号 from 表2 where 条件
#3
gameohyes
2010-06-14 17:32
不知意思有无理解错
1