• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

MySQL learning resources

 
Ranch Hand
Posts: 113
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I plan on trying MySQL out, for personal use. I'm familiar with SQL, but largley unfamiliar with running a database program (I am at the point where MySQL is installed and running properly).

Does anyone know of any particularily good resources for learning how to work with MySQL? What are your thoughts on MySQL as an application?
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Maxim,
I'm happy with MySQL. I would recommend downloading a graphical tool for database management too. For example, you could use Free Mascon.

The help documentation that comes with mySql is pretty good if you want to accomplish a specific task. There are also books, but I haven't ready any to comment on.
 
Ranch Hand
Posts: 236
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi -

I came from a background in Oracle 6, 7, 8 and a little 9i) and MS-SQL (6.5, 7 and SQL-2000), and played with mySQL and PostgreSQL a little last Spring. I was frankly shocked at all the things mySQL *couldn't* do:

- No subselects
- No ANSI- 99 "join" syntax
- Limited pre-ANSI 99 joins
- No stored procedures
- Etc etc

Now admittedly, my Linux came bundled with a relatively old version of mySQL (my version was 3.23, the current GA is 4.0.21; mySQL 5.0 is in alpha) and, admittedly, there were workarounds for each of the limitations I encountered.

But my overall impression was that mySQL is to Linux very much like MS-Access is to Windows: an excellent solution for a large number of tasks ... but *not* the best way to learn "SQL" per se.

In addition to looking at mySQL, I'd strongly urge you to consider Oracle (which is available as a free download for developers), PostgreSQL, Sybase or other alternatives as well.

IMHO...

Your .. PSM
 
clojure forum advocate
Posts: 3479
Mac Objective C Clojure
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you choose Oracle, be prepared to buy a new RAM !
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic