MySQL Forums
Forum List  »  Docs

Re: seeking help
Posted by: John Russell
Date: April 26, 2012 01:23PM

In addition to the databases Philip mentioned with made-up data, I recommend doing 'use information_schema' and practicing queries on the tables you find there. Because these tables contain info about the structure of your own databases, you'll learn some things about how MySQL works at the same time. These tables are read-only, so you'll only be able to try out queries on them. (Although you can also do something like 'use test; create table t as select * from information_schema.tables;' to get a copy of the data where you can try insert, update, etc.)

Options: ReplyQuote


Subject
Views
Written By
Posted
4319
February 27, 2012 07:02AM
2531
April 11, 2012 02:39AM
2706
April 26, 2012 08:54AM
Re: seeking help
2640
April 26, 2012 01:23PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.