
正文
\G,sql中select 如果太长,可以在后面放\G,竖行显示~~~~
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
1.使用\G按行垂直显示结果
如果一行很长,需要这行显示的话,看起结果来就非常的难受。
在SQL语句或者命令后使用\G而不是分号结尾,可以将每一行的值垂直输出。
mysql> select * from tf_product\G;
*************************** . row ***************************
id:
title:
title_remark: remark
price:
old_price:
title_img1: site_upload/title_img1//1504178909_233791261.png
title_img2: site_upload/title_img2//1504178910_418081069.png
high_light: 危秋洁搬到札幌民宿Ocho居住%
第二天去了美瑛%
在薰衣草前拍照并上传到微博
is_new:
is_rec:
is_coupon_enabled:
status:
is_del:
addtime:
*************************** . row ***************************
id:
title: 亲子照片
title_remark:
price:
old_price:
title_img1: site_upload/title_img1//1504180526_253355237.png
title_img2: site_upload/title_img2//1504180526_156898435.png
high_light:
is_new:
is_rec:
is_coupon_enabled:
status:
is_del:
addtime:





