views:

54

answers:

1

Is there any equivalent to psql's \x to view a record with each column on a new row?

+1  A: 

SELECT * FROM table_name\G

pygorex1