>백엔드 개발 >PHP 튜토리얼 >这样的sql语句怎么写

这样的sql语句怎么写

WBOY
WBOY원래의
2016-07-06 13:53:44959검색

一个礼物表: from(赠送者) to(收到者)
一个用户表:id nickname

from和to都关联用户表的id,怎么查询出结果:

赠送者昵称 收到者昵称

回复内容:

一个礼物表: from(赠送者) to(收到者)
一个用户表:id nickname

from和to都关联用户表的id,怎么查询出结果:

赠送者昵称 收到者昵称

<code>select *
from 礼物
left join 用户 as 发送方
on 礼物.from =发送方.id
left join 用户 as 接受方
on 礼物.to = 接收方.id</code>

其中的中文换成对应英文。。。字段自己处理一下

多对多的表连接查询

select usertable1.nickname, usertable2.nickname from gifttable left join usertable as usertable1 on usertable1.id = gifttable.from left join usertable as usertable2 on usertable2.id = gifttable.to

SQL LEFT JOIN 关键字

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.