用SQL怎样根据一个表种的字段ID查出另一个表中的数据?

 我来答
我看的是你看我
推荐于2019-10-30 · TA获得超过2534个赞
知道小有建树答主
回答量:25
采纳率:0%
帮助的人:3661
展开全部
  1. 例如:两个表中的news_type_id 跟 type_id是对应的,根据NEWS 表中的 news_type_id =1 查出 news_type 表中的 type_name

  2. 根据 NEWS表中的 news_type_id = 1 查出 news_type表中的 “透明点评” 这条数据,“透明点评”是最后需要查出来的位置数据。

比如表连接的方式就可以写成:
select n.id,t.type_name,title from news as n inner join news_type as t on n.news_type_id=t.type_id;
只查“透明点评”的数据子查询可以写成:
select * from news where news_type_id=(select type_id from news_type where type_name='透明点评');

南北186
2018-01-05 · TA获得超过9.1万个赞
知道小有建树答主
回答量:114
采纳率:100%
帮助的人:5.3万
展开全部
  1. 写法轻松,更新效率高:
    update table1 
    set field1=table2.field1,
    field2=table2.field2
    from table2
    where table1.id=table2.id

  2. 常规方式,种写法相当于一个 Left join, 以外面的where为更新条数,如果不加where就是所有记录

  3. update table1
    set field1=(select top 1 field1 from table2 where table2.id=table1.id)
    where table1.id in (condition)

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式