假设存在两张表 c 和 p,这里使用的是MySQL数据库。 数据表 c: course_id title dept_name credits BIO-301 Genetics Biology 4 CS-190 Game Design Comp.sci 4 CS-315 Robotics Comp.sci 3 数据表 p: course_id prereq_id BIO-301 BIO-101 CS-190 CS-101 CS-347 CS-101 1. 笛卡儿积 SQL语句如下: select * from c,p; 或 select *