今天学习并练习了数据库的查询语句。
SELECT 语句用于从数据库中选取数据。
语法:
SELECT column_name,column_name FROM table_name;
SELECT * FROM table_name;