SQL Getting Started

SQL Database system stores the data in the form of tables.

You need to connect to such a SQL database in order to execute your SQL queries.

You can either use our online SQL Editor or install a SQL Server on the machine you would like to run the SQL queries.

  • For learning purposes, you can use our online SQL Editor.
  • For your application development, you need to install SQL Server on the machine you need to host your database.

Our Online SQL Editor

For learning purposes, you can use our online SQL Editor which provides a database on which you can execute any kind of SQL query.

  • It provides a database instance with some predefined tables and their data, using WebSQL technology.
  • You can execute any kind of SQL query against that instance, without any hesitation in corrupting the database, as you can restore the database at any time.
  • It also provides several examples for reference.

All the SQL queries from this tutorial can be executed using our online SQL Editor.

What is WebSQL?

WebSQL allows the creation of a database on the client-side (within the browser) so that each user gets their own database instance.

Then, execute any kind of SQL query on such a database.

WebSQL is supported by major browsers, like Chrome, Firefox, Opera, Safari, etc.,

Overall

You can use our online SQL Editor to execute the SQL queries from this tutorial.

Related Links