Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下问题,我有 2 张桌子USER和MESSAGES. 是表中User.ID的 FK in 字段。MESSAGES.CREATED_BYMessages
USER
MESSAGES
User.ID
MESSAGES.CREATED_BY
Messages
我已经用 INNER JOIN 加入了 2 个表,但我想在我的 SELECT 中显示表中的messages.Created_BY哪一User.Loginname列USER?根据返回太多数据的错误,子选择不起作用。
messages.Created_BY
User.Loginname
SELECT messages.id, messages.body, u.Loginname AS Created_by FROM messages m JOIN user u ON (m.created_by=u.id)
将字段名称 messages.id、messages.body 和 user.id 更改为您拥有的名称。