Louis Stephens
Louis Stephens

Reputation: 790

Fake mysql server to run sql commands on for practice

I am trying to get better with SQL commands, but I really do not have a database currently set up that I can practice on. Does anyone know of an all-in-one program or an online service that has a database set up and filled with data that I could practice my SQL commands on/in?

Upvotes: 1

Views: 10015

Answers (3)

Dil.
Dil.

Reputation: 2076

I found this site pretty much helping.
http://sqlzoo.net/wiki/SELECT_basics
Although they use mariaDB still same queries.. So no worries.

Upvotes: 1

Jagmag
Jagmag

Reputation: 10356

Frankly, I do not really know of any GOOD online site for doing this.

Google gave me this site but i tried it out and its really a bit cumbersome and difficult to work with.

I would really suggest that you will find it a LOT easier to install some database like MySQL / SQL Server Express on your machine and try things out.

Installing something like SQL Server Express is really easy. You can just download the db + tools from here, a quick install and you will be all set to go

For the sample data, you can always download the Adventureworks database. Step by step details on how to get the AdventureWorks database running with SQL Express are listed here

Upvotes: 3

DVK
DVK

Reputation: 129403

Google's your friend

http://www.mysqltutorial.org/mysql-sample-database.aspx

Upvotes: 1

Related Questions