|

Websites to Learn and Practice SQL for Free

You can practise SQL live online for Free. Here are a list of some websites in no particular order.

  1. Oracle Live SQL. This site also has lots of examples and tutorials which you can see the codes right there and then
  2. SQL Fiddle: You can practise various SQL by major players here as well.
  3. w3schools: Has lots of fundamental examples and sample database for practice
Want more information like this?

Similar Posts

  • How to Manually Start Stop and Restart MySql Server on Windows PC

    When installing MySql server  package, you can instruct the installation to configure MySql server to start automatically on each windows start up. However, if you want to reserve resources whilst you will not be working with the MySql server and hence you do not want the server to automatically start up on every boot of…

  • |

    MySQL – Summarizing Data – SUM COUNT -MIN -MAX – AVG – DOGNITION Database

    Summarizing  Data This week we are looking at five most common aggregate functions used to summarize information stored in tables: COUNT and SUM very frequently. COUNT is the only aggregate function that can work on any type of variable. The other four aggregate functions are only appropriate for numerical data. All aggregate functions require you…

  • Visual Explanation illustration and presentation of SQL JOINS query statements

    SQL Joins can sometimes be a bit confusing, particularly if you a newbie. I have below 2 visual representations which should help enhance your visual understanding of SQL JOINS First is from From CodeProject, by C L Moffatt You can check full explanation here: Sql Joins visually explained   2. Second was from Duke University….

  • | | |

    FREE Mock Data Generating Website for Data Science and other Data Analysis projects

      Sometimes, you need some mock  or test data to either test your program or for your analysis or to populate your database. Or sometimes, you need some sample or mock data to illustrate or explain a concept but you do not want to use your companies’ data or your delicate data. There are a…

  • |

    Great Quick Transact-SQL Server Tutorials – Quick Revision and General Understanding

    I receive a lot of emails about where to get quick and excellent resources for explaining most of the concepts of Transact-SQL (T SQL)  and  Microsoft SQL Server in general What is Transact-SQL or T SQL. T-SQL (Transact-SQL) is a set of programming extensions from Sybase and Microsoft that add several features to the Structured Query…

  • |

    Creating Oracle PL/SQL Tables for Intercollegiate Athletic Database – Data Warehousing

    Creating Oracle  tables for Intercollegiate Athletic Database. Part of Assignment one of Data Warehousing for Business Intelligence on Coursera

    After creating the tables lets insert values

      In case you want to change a constraint on a field, you can use a syntax examples as the following. ALTER TABLE FACILITY ADD CONSTRAINT UNQ_FAC UNIQUE (FACNAME)…

Leave a Reply

Your email address will not be published. Required fields are marked *