表A和表B,A有id、time、userid,B有userid username, 现在需要查出A表中与张三相关的数据

A表idtimeuserid112:001212:012312:301B表useridusername1张三2李四想要的结果是:usernameA.idtimeuseri... A表id time userid
1 12:00 1
2 12:01 2
3 12:30 1
B表 userid username
1 张三
2 李四

想要的结果是:
username A.id time userid
张三 1 12:00 1
张三 3 12:30 1
实现的sql语句是?
展开
 我来答
0808xyj
2015-01-29 · TA获得超过1891个赞
知道大有可为答主
回答量:1237
采纳率:100%
帮助的人:1082万
展开全部
select b.username,a.id,a.time,a.userid from A a, B b where a.userid = b.userid
追问
老实说不是完全回答了我的问题,因为我有个条件是张三,
应该加上
and a.userid = (select b.userid from where b.name='张三')

另外from A a , B b
这里为什么要用别名?

再另外如果我只有a表,那么我select * from a ,但是我希望能多出来一列内容都是张三,该怎么实现呢?
追答
-- 可以不加别名(顾名思义,就是代称,方便在多表关联查询使用)
select b.username,a.id,a.time,a.userid from A a, B b where a.userid = b.userid and b.username = '张三'
-- 若用一张表的话,你首先必须 知道是哪一个主键或者标识字段来过滤查询
-- 下面还是用到你两张表
如 select ‘张三’,id,time from A where userid = (select userid from where name='张三')
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式