![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FsT3RC%2Fbtr2uZY9Rk0%2FMkWDmekBon7H5S6zKDfaCk%2Fimg.png)
SQL | MySQL | SELECT(1) - 간단한 데이터 조작
·
SQL
SELECT문을 사용하여 테이블의 데이터를 선택할 수 있다. SELECT [ALL | DISTINCT | DISTINCTROW] select_expr [, select_expr ...] [FROM table_references [WHERE where_condition] [GROUP BY {col_name | expr | position} [ASC | DESC], ... [WITH ROLLUP]] [HAVING where_condition] [ORDER BY {col_name | expr | position} [ASC | DESC], ...] [LIMIT {[offset,] row_count | row_count OFFSET offset}] [PROCEDURE procedure_name(argument_l..