tags:

views:

108

answers:

4

do you know where i can find some practice SQL problems? where i can write select statements

+5  A: 

SQL exercises or you can create a test table with fake data and manipulate that. Personally, I learn better with hands-on activity, by playing with the SELECT statements myself before even practicing an online guide. However, not everyone is the same.

Here are a few other links to check out:

Good luck.

Anthony Forloney
Good links posted.
fastcodejava
+2  A: 

You can find some here as well.

davecoulter
Although really, I would download SQL Server Express, download the AdventureWorks db, and get a beginning SQL book like "Beginning SQL"
davecoulter
+2  A: 

Look the line of books by Celko, it has lots of examples and exercises.

+1  A: 

Try SQL Exercises. Free and interactive.

msi77