PostgreSql 查询结果竖行展示
连接数据库:
gsql -U core -d username -W password -p prot -h ip
当前会话在select语句后加上\g\x\g即可(mysql 使用 \G),在不切换会话时,所有查询都会保持竖行展示
select * from table_name limit 1\g\x\g;

连接数据库:
gsql -U core -d username -W password -p prot -h ip
当前会话在select语句后加上\g\x\g即可(mysql 使用 \G),在不切换会话时,所有查询都会保持竖行展示
select * from table_name limit 1\g\x\g;
