So given:
CREATE TABLE stuff (
really_long_title int(10) NO NULL auto_increment,
really_long_title_number_1 varchar(10) NO NULL auto_increment,
PRIMARY KEY (blah)
);
DESCRIBE table;
I would like to be shown my table with two rows (blah and blah1) and attributes for each. Instead I'm shown the two rows of my table but in the "extra" field where "auto_increment" would be show it is cut off about half way through and the words and table outline wrap around to the next line. I can't expand cmd in win7 large enough so that cmd won't wrap my databases around on top of themselves. There must be a better way to view my table. thanks.