SELECT *FROM course; SELECT student_name,student_id FROM student; SELECT student_name AS姓名, contact_info AS 联系方式, home_address AS 家庭住址 FROM student; SELECT DISTINCT home_address FROM student;