学习了数据库的select的简单用法。
SELECT column1, column2, ... FROM table_name;
与
SELECT * FROM table_name;
SELECT DISTINCT column1, column2, ... FROM table_name;