查詢(SQL)
查詢
SELECT
FROM
code:sql
SELECT column, another_column, …
FROM mytable;
可以使用
*
取代逐一列出所有欄位名稱
code:sql
SELECT *
FROM mytable;