How do I print out the fields and it's related attributes from tables in MySQL? I use MySQL Control Center but I see no print function...
Yeah... My eyesight is not getting any better from reading from the screen.. I dislike having to toggle my screen from PHP programming and MySQL... I thought I might as well print out a copy and stick it on the wall...
Here's a novel idea. Dump the table structure. Copy and paste to your favorite editor. Click the "print" icon.
1) Connect to your server 2) Issue command: describe <your-table-name>; Alternatively, use phpMyAdmin if you have access to it. I don't think their MySQL Control Center can do it