Is there any 开发者_C百科equivalent to psql's \x to view a record with each column on a new row?
Append \G
to the end of the statement before the semicolon:
SELECT * FROM table_name [WHERE condition] \G;
Is there any 开发者_C百科equivalent to psql's \x to view a record with each column on a new row?
Append \G
to the end of the statement before the semicolon:
SELECT * FROM table_name [WHERE condition] \G;
精彩评论