我使用學生數據並且有兩個具有相同結構但不同數據集的表。我想添加一個記錄爲'0'或'1'的新列,以確定學生是否出現在另一個表中。例如:SQL添加新列以檢查ID是否出現在另一個表中
Table 1:
s_id s_year s_term s_crs NewColumn(was student enrolled in 2016?)
123456 2017 Fall Math 1010 1
654321 2017 Fall Eng 1010 0
Table 2:
s_id s_year s_term s_crs
123456 2016 Fall Math 2010
432516 2016 Fall Eng 2010
你會如何去做這件事?
SELECT s_id, s_year, s_term, s_crs
(CASE
WHEN S_ID IN (select s_id from table2)
THEN '1'
或者這種性質的東西?我不能確定如何與聯接