\g的作用和mysql中的分號」;"是一樣;
\g的作用是講查詢到的內容結構旋轉90度,變成縱向結構;
下面舉例說明,查詢資料庫中的存在的儲存過程狀態:
show procedure status like '%pricing%'\g
具體如下所示:
mysql> show procedure status like '%pricing%'\g
| db | name | type | definer | modified | created | security_type | comment | character_set_client | collation_connection | database collation |
| my_db | productpricing | procedure | root@localhost | 2019-03-27 14:03:00 | 2019-03-27 14:03:00 | definer | | utf8 | utf8_general_ci | utf8_general_ci |
1 row in set (0.00 sec)
把\g替換成\g後,如下所示:
mysql> show procedure status like '%pricing%'\g
*************************** 1. row ***************************
db: my_db
name: productpricing
type: procedure
definer: root@localhost
modified: 2019-03-27 14:03:00
created: 2019-03-27 14:03:00
security_type: definer
comment:
character_set_client: utf8
collation_connection: utf8_general_ci
database collation: utf8_general_ci
1 row in set (0.00 sec)
這樣就一目了然的知道了有乙個名稱為productpricing的儲存過程。
oj 中G 和C 區別
以下內容 1 輸出double型別時,如果採用g 提交,scanf採用 lf,prinf採用 f,否則會報錯 對於64位整數,long long int 和 int64 都是支援並且等價的.但是在讀和寫的時候只支援scanf i64d 和printf i64d 不支援 lld 是因為mingw下的g...
oj 中G 和C 區別
1 輸出double型別時,如果採用g 提交,scanf採用 lf,prinf採用 f,否則會報錯 對於64位整數,long long int 和 int64 都是支援並且等價的.但是在讀和寫的時候只支援scanf i64d 和printf i64d 不支援 lld 是因為mingw下的gcc和g ...
oj 中G 和C 區別
1 輸出double型別時,如果採用g 提交,scanf採用 lf,prinf採用 f,否則會報錯 對於64位整數,long long int 和 int64 都是支援並且等價的.但是在讀和寫的時候只支援scanf i64d 和printf i64d 不支援 lld 是因為mingw下的gcc和g ...