假设我的数据库中有 2 个表
user:
id, username
userpost:
userid, post
我已经定义了一个要连接userpost.userid
到user.id
数据库(mysql)中的关系。
是否有一个查询(尽可能简单)来拉整行(包括用户行)而不知道程序员端的关系?含义,依赖于数据库本身定义的关系
就像是"SELECT * from userpost include foreign key"
假设我的数据库中有 2 个表
user:
id, username
userpost:
userid, post
我已经定义了一个要连接userpost.userid
到user.id
数据库(mysql)中的关系。
是否有一个查询(尽可能简单)来拉整行(包括用户行)而不知道程序员端的关系?含义,依赖于数据库本身定义的关系
就像是"SELECT * from userpost include foreign key"