如何查询无关系的年课程级mysql

icnyk63a  于 2021-06-25  发布在  Mysql
关注(0)|答案(1)|浏览(196)

如何在没有关系的情况下查询每年的课程级别mysql?
表1

id course

1  DBA

2  BSCS

表2

id  level

1   first year

2   second year

3   third year

4   fourth year

见下图预期输出
在此处输入图像描述

1mrurvl1

1mrurvl11#

你需要做什么 cross join ```
select t1.course, t2.level from table_1 t1 cross join table_2 t2

相关问题