请教个SQL语句!

quweiie 2008-08-25 04:16:47

create table tb(
id int identity(1,1) primary key,
uid int --用户ID
sale_name varchar(50)
sale_info text
uFlag tinyint)--0为个人,1为企业
/*************************************/
select a.id,a.sale_name,a.sale_info
from tb a,? b
where a.uid=b.id

个人会员表 userReg,企业会员表compReg,这个"?"表无法确定,这个SQL语句想让大家帮我想想
...全文
95 10 打赏 收藏 转发到动态 举报
写回复
用AI写文章
10 条回复
切换为时间正序
请发表友善的回复…
发表回复
quweiie 2008-08-25
  • 打赏
  • 举报
回复
小虎,你很聪明啊,谢谢,马上给分,接帖!
t285467161 2008-08-25
  • 打赏
  • 举报
回复
额..'0','1'的引号要去掉..
t285467161 2008-08-25
  • 打赏
  • 举报
回复
select a.id,a.sale_name,a.sale_info
from tb a,userReg b
where a.uid=b.id and a.uFlag='0'
union all
select a.id,a.sale_name,a.sale_info
from tb a,compReg b
where a.uid=b.id and a.uFlag='1'

leo_lesley 2008-08-25
  • 打赏
  • 举报
回复
select a.id,a.sale_name,a.sale_info 
from tb a,(select id,xTb=case when uFlag=0 then 'userReg' else 'compReg' end from tb) b
where a.uid=b.id
lff642 2008-08-25
  • 打赏
  • 举报
回复


select a.id,a.sale_name,a.sale_info
from tb a,(select id, xTb=case when uFlag=0 then 'userReg' else 'compReg' end from tb) b
where a.uid=b.id

--B表这里少了一个ID

忆轩辕 2008-08-25
  • 打赏
  • 举报
回复
恩,还是用动态SQl
水族杰纶 2008-08-25
  • 打赏
  • 举报
回复
用动态的吧
SQL code动态sql语句基本语法
1 :普通SQL语句可以用Exec执行

eg: Select * from tableName
Exec('select * from tableName')
Exec sp_executesql N'select * from tableName' -- 请注意字符串前一定要加N

2:字段名,表名,数据库名之类作为变量时,必须用动态SQL

eg:
declare @fname varchar(20)
set @fname = 'FiledName'
Select @fname from tableName -- 错误,不会提示错误,但结果为固定值FiledName,并非所要。
Exec('select ' + @fname + ' from tableName') -- 请注意 加号前后的 单引号的边上加空格

当然将字符串改成变量的形式也可
declare @fname varchar(20)
set @fname = 'FiledName' --设置字段名

declare @s varchar(1000)
set @s = 'select ' + @fname + ' from tableName'
Exec(@s) -- 成功
exec sp_executesql @s -- 此句会报错



declare @s Nvarchar(1000) -- 注意此处改为nvarchar(1000)
set @s = 'select ' + @fname + ' from tableName'
Exec(@s) -- 成功
exec sp_executesql @s -- 此句正确

3. 输出参数
declare @num int,
@sqls nvarchar(4000)
set @sqls='select count(*) from tableName'
exec(@sqls)
--如何将exec执行结果放入变量中?

declare @num int,
@sqls nvarchar(4000)
set @sqls='select @a=count(*) from tableName '
exec sp_executesql @sqls,N'@a int output',@num output
select @num

quweiie 2008-08-25
  • 打赏
  • 举报
回复
这个?也可能是userReg,或是compReg,这个得根据uFlag的值决定

select a.id,a.sale_name,a.sale_info
from tb a,(select xTb=case when uFlag=0 then 'userReg' else 'compReg' end from tb) b
where a.uid=b.id
可查询分析器报错
消息 207,级别 16,状态 1,第 3 行
列名 'id' 无效。
为什么?
M1CR0S0FT 2008-08-25
  • 打赏
  • 举报
回复
表达有问题。
liangCK 2008-08-25
  • 打赏
  • 举报
回复
不知道你想查什么..所以我也不知道.

34,575

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server相关内容讨论专区
社区管理员
  • 基础类社区
  • 二月十六
  • 卖水果的net
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧