[MySQL] 강의 정리 4 - MySQL CRUD (2)

xyzw·2023년 3월 18일
0

database

목록 보기
5/10

[Inflearn] DATABASE 1&2 - MySQL (Egoing Lee)
섹션 4를 듣고 정리하였다.

참고
SELECT statement

Read

데이터를 가져오는 것

특정 column을 가져오는 방법

SELECT colunm1, column2, ... FROM table_name;

예제

SELECT id,title,created,author FROM topic;

모든 column을 가져오는 방법

SELECT * FROM table_name;

예제

SELECT * FROM topic;

조건을 만족하는 column을 가져오는 방법

SELECT colunm1, column2, ... FROM table_name WHERE condition;

예제

SELECT id,title,created,author FROM topic WHERE author='egoing';

정렬하는 방법

SELECT colunm1, column2, ... FROM table_name ORDER BY column expr;

예제

SELECT id,title,created,author FROM topic WHERE author='egoing' ORDER BY id DESC;

DESC: descending order 내림차순

출력 개수 제한하는 방법

SELECT colunm1, column2, ... FROM table_name LIMIT row_count;

예제

SELECT id,title,created,author FROM topic WHERE author='egoing' ORDER BY id DESC LIMIT 1;

0개의 댓글