|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here! |
|
#1
|
|||
|
|||
|
When I SELECT * from MYTABLE the table isn't very readable because some of the info in the table causes the rows to wrap around to the next line.
Is there a way to make the table more readable? |
|
#2
|
|||
|
|||
|
you could try to split your table by means of a query
example: table has rows: UID int, name char(50), counrty char(50) you can select the different columns as like this: select UID,name from table_name or select name,country from table_name |
|
#3
|
|||
|
|||
|
Thanks,
That's a great solution. Somebody also tipped me off to: SELECT * FROM mytable G <ENTER> However, now I'm wondering how to look at each row before it scrolls up the screen. Anyway, thanks everybody. |
![]() |
| Viewing: Dev Shed Forums > Databases > MySQL Help > viewing columns |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|