"SQL 별칭"의 두 판 사이의 차이

18번째 줄: 18번째 줄:
|  3 |
|  3 |
+-----+
+-----+
</source>
<source lang='cli'>
mysql> SELECT CustomerName, CONCAT(Address,', ',City,', ',PostalCode,', ',Country) FROM Customers WHERE CustomerID=4;
+-----------------+--------------------------------------------------------+
| CustomerName    | CONCAT(Address,', ',City,', ',PostalCode,', ',Country) |
+-----------------+--------------------------------------------------------+
| Around the Horn | 120 Hanover Sq., London, WA1 1DP, UK                  |
+-----------------+--------------------------------------------------------+
</source>
<source lang='cli'>
mysql> SELECT CustomerName, CONCAT(Address,', ',City,', ',PostalCode,', ',Country) AS Address FROM Customers WHERE CustomerID=4;
+-----------------+--------------------------------------+
| CustomerName    | Address                              |
+-----------------+--------------------------------------+
| Around the Horn | 120 Hanover Sq., London, WA1 1DP, UK |
+-----------------+--------------------------------------+
</source>
</source>



2015년 2월 25일 (수) 06:04 판

SQL Aliases
SQL 별칭

1 예시

mysql> SELECT COUNT(*) FROM Customers;
+----------+
| COUNT(*) |
+----------+
|        3 |
+----------+
mysql> SELECT COUNT(*) AS cnt FROM Customers;
+-----+
| cnt |
+-----+
|   3 |
+-----+
mysql> SELECT CustomerName, CONCAT(Address,', ',City,', ',PostalCode,', ',Country) FROM Customers WHERE CustomerID=4;
+-----------------+--------------------------------------------------------+
| CustomerName    | CONCAT(Address,', ',City,', ',PostalCode,', ',Country) |
+-----------------+--------------------------------------------------------+
| Around the Horn | 120 Hanover Sq., London, WA1 1DP, UK                   |
+-----------------+--------------------------------------------------------+
mysql> SELECT CustomerName, CONCAT(Address,', ',City,', ',PostalCode,', ',Country) AS Address FROM Customers WHERE CustomerID=4;
+-----------------+--------------------------------------+
| CustomerName    | Address                              |
+-----------------+--------------------------------------+
| Around the Horn | 120 Hanover Sq., London, WA1 1DP, UK |
+-----------------+--------------------------------------+

2 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}