How can I display MySQL query result vertically? (tutorialspoint.com)
With the use of ego, \G option at end of a statement, we can get the result set in vertical format. Consider the following example −
mysql> Select * from Student where name = 'Aarav'\G
*************************** 1. row ***************************
Name: Aarav
RollNo: 150
Grade: M.SC
1 row in set (0.00 sec)
MySQL 결과값을 세로로 보기
G는 대문자로 쳐야 함.
'Programming' 카테고리의 다른 글
Print Stack Trace in Python | Delft Stack (0) | 2022.04.03 |
---|---|
[MySQL] ROWNUM을 사용하여 번호매기기 (0) | 2022.03.29 |
SQLite는 dynamic typing이다. (0) | 2022.02.18 |
SQL 툴 비교 (0) | 2022.02.16 |
Import CSV File Into MySQL Table (mysqltutorial.org) (0) | 2022.02.15 |