Is there a command in MySQL to display the information for one record? I haven't seen anything, so far, in the MySQL docs. I've only seen as far as DESCRIBE TABLE that only lists the columns.
are you talking about showing the results???
mysql_fetch_row is what I usually use. this will lists the results for each row that corresponds with qualifying data from a mysql_query
That looks about like what I need. How would I go about doing something like that from the Command Interface....ie
mysql>FETCH ROW;
Something like that?
not sure from the command interface. I do believe you have to have the mysql client installed in order to do it. After installing and compiling, I'm sure they have documentation on it.
sorry not much more help
Nevermind. I just needed to perform a simple SELECT * FROM table_name query. I'm slow sometimes.