只有一张学生表 student
id name 其他字段
1 张三
2 李四
3 王五
语文、数学、英语三科
SQL要查出来的数据是这样的
id name 科目
1 张三 语文
1 张三 数学
1 张三 英语
2 李四 语文
2 李四 数学
2 李四 英语
3 王五 语文
3 王五 数学
3 王五 英语
这个SQL要怎么写?
相关问题
- SQL join to get the cartesian product of 2 columns
- sql execution latency when assign to a variable
- Difference between Types.INTEGER and Types.NULL in
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
语文数学英语都没表存?懒的找了,搜
cross join
这个join是可以连接非表的数据,或者说,把语文
,数学
,英语
变成表的形式。。。