MySQL 8.0 Reference Manual - Tutorial - Entering Queries
3.2 Entering Queries
mysql> SELECT VERSION(), CURRENT_DATE; +-----------+--------------+ | VERSION() | CURRENT_DATE | +-----------+--------------+ | 8.0.17 | 2020-02-28 | +-----------+--------------+ 1 row in set (0.01 sec)
SQL 문장의 끝을 ; 으로 마무리 하면 되며 QUIT 등 특별한 경우에는 ; 가 생략되어도 된다.
mysql> SELECT SIN(PI()/4), (4+1)*5; +--------------------+---------+ | SIN(PI()/4) | (4+1)*5 | +--------------------+---------+ | 0.7071067811865476 | 25 | +--------------------+---------+ 1 row in set (0.00 sec)
위와 같이 간단한 계산에 사용할 수도 있다.
mysql> SELECT VERSION(); SELECT NOW(); +-----------+ | VERSION() | +-----------+ | 8.0.17 | +-----------+ 1 row in set (0.00 sec) +---------------------+ | NOW() | +---------------------+ | 2020-02-28 13:10:09 | +---------------------+ 1 row in set (0.00 sec)
위와 같이 간단한 SQL의 경우 enter 없이 싱글 라인에 두개의 문장을 붙여 사용도 가능하다.
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
9 | MySQL 8.0 Reference Manual - MySQL Server Administration2 - Server Configuration Validation | 명품관 | 2020.04.17 | 1490 |
8 | MySQL 8.0 Reference Manual - MySQL Server Administration1 - Configuring the Server | 명품관 | 2020.03.05 | 9810 |
7 | MySQL 8.0 Reference Manual - Tutorial - Creating and Using a Database4 | 명품관 | 2020.03.03 | 432 |
6 | MySQL 8.0 Reference Manual - Tutorial - Creating and Using a Database3 | 명품관 | 2020.03.02 | 633 |
5 | MySQL 8.0 Reference Manual - Tutorial - Creating and Using a Database2 | 명품관 | 2020.02.29 | 381 |
4 | MySQL 8.0 Reference Manual - Tutorial - Creating and Using a Database1 | 명품관 | 2020.02.28 | 341 |
» | MySQL 8.0 Reference Manual - Tutorial - Entering Queries | 명품관 | 2020.02.28 | 335 |
2 | MySQL 8.0 Reference Manual - Tutorial - Connecting to and Disconnecting from the Server | 명품관 | 2020.02.27 | 382 |
1 | MySQL Admin - 01 | 명품관 | 2019.10.08 | 835 |