• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

mySQL Question - How to view contents of table?

wizzz

Senior member
After I create a table called 'foo' and insert some data into it,
how can I view the data stored in 'foo'?

I'd appreciate any help.
 
select * from foo

Then you can do a select * from foo order by field, field

or

select field1, field3, ....fieldN from foo

Replace "field" with a real field name in foo.

show structure will show the fields and what kind of data they are

Good Luck

Scott
 
Back
Top