简体   繁体   中英

DB browser Sqlite table relation

我不会问有关SQLite的数据库浏览器中的表关系,我有一个具有UserID字段的表名(User),然后有一个具有LetterID字段的表名(Letter),最后,我有一个表(成绩)在此表中,我希望所有的userID都具有所有的LetterID,但我无法通过任何方式获取此信息,请帮助我

Sounds like you're after a Cartesian product. A cross join produces that.

SELECT u.userid,
       l.letterid
       FROM user u
            CROSS JOIN letter l;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM