You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
In SQL-CLI, name field in schema in response is used as column header. However, alias is supposed to be used if it's present.
Here is an example in MySQL CLI:
mysql> select max(age) from accounts;
+----------+
| max(age) |
+----------+
| 30 |
+----------+
1 row in set (0.06 sec)
mysql> select max(age) as max from accounts;
+------+
| max |
+------+
| 30 |
+------+
1 row in set (0.00 sec)
The text was updated successfully, but these errors were encountered:
In SQL-CLI,
name
field inschema
in response is used as column header. However,alias
is supposed to be used if it's present.Here is an example in MySQL CLI:
The text was updated successfully, but these errors were encountered: