close
首先 我們有兩個表分別為course、time
course表的欄位分別為如下
time表的欄位分別為如下
time的欄位cid為course 的ID欄位
以上為設計的資料表,
題目為1. 查詢國文課上課的人有哪些人,
指令為
SELECT student FROM `course` JOIN `time` ON `course`.id = `time`.cid where `course`.subject = '國文'
以下為搜尋後的結果
2.查詢林小姐有在上那些科目
指令為
SELECT `subject` FROM `course` JOIN `time` ON `course`.`id`=`time`.`cid` where `time`.`student`='林小姐'
以下為搜尋後的結果
3.查詢有那些學生有上國文和英文
指令為
SELECT `student` FROM `course` JOIN `time` ON `course`.`id`=`time`.`cid` where `course`.`subject` in ('國文','英文')
以下為搜尋後的結果
文章標籤
全站熱搜
留言列表