this query is not wrong and not giving any error i'm ruining this query on w3school http://www.w3schools.com/sql/trysql.asp?filename=trysql_select_all

open this link and paste the query.

    SELECT c.CustomerName, p.ProductName
    FROM Customers c inner join Orders o on c.CustomerID = o.CustomerID
    JOIN OrderDetails od on od.OrderID = o.OrderID
    JOIN Products p on p.ProductID = od.ProductID;
Answer from Ayaz ahmed khan on Stack Overflow
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ sql_editor.asp
SQL Online Editor (Compiler)
With our online SQL editor, you can edit SQL statements, and view the result in your browser. ... Click on the "Try it Yourself" button to see how it works. If you want to create your own website, or web applications with a SQL Database, check ...
๐ŸŒ
W3Schools
w3schools.com โ€บ sql
SQL Tutorial
With our online SQL editor, you can edit the SQL statements, and click on a button to view the result. ... Click on the "Try it Yourself" button to see how it works. Many chapters in this tutorial end with an exercise where you can check your level of knowledge. ... Learn by examples! This tutorial supplements all explanations with clarifying examples. ... Test your SQL skills at W3Schools...
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ trysql.asp
SQL Tryit Editor v1.6
W3Schools has created an SQL database in your browser. The menu to the right displays the database, and will reflect any changes. Feel free to experiment with any SQL statement. You can restore the database at any time. This SQL-Statement is not supported in the WebSQL Database. The example still works, because it uses a modified version of SQL. ... You are now using a light-version of the Try-SQL Editor, with a read-only Database.
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ default.asp
SQL Tutorial - W3Schools
With our online SQL editor, you can edit the SQL statements, and click on a button to view the result. ... Click on the "Try it Yourself" button to see how it works. Many chapters in this tutorial end with an exercise where you can check your level of knowledge. ... Learn by examples! This tutorial supplements all explanations with clarifying examples. ... Test your SQL skills at W3Schools...
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ trysql.asp
SQL Tryit Editor v1.6 - W3Schools
W3Schools has created an SQL database in your browser. The menu to the right displays the database, and will reflect any changes. Feel free to experiment with any SQL statement. You can restore the database at any time. This SQL-Statement is not supported in the WebSQL Database. The example still works, because it uses a modified version of SQL. ... You are now using a light-version of the Try-SQL Editor, with a read-only Database.
Find elsewhere
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ sql_syntax.asp
SQL Syntax
In this tutorial, we will use semicolon at the end of each SQL statement. ... If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail: [email protected]
๐ŸŒ
W3Schools
w3schools.com โ€บ MySQL โ€บ default.asp
MySQL Tutorial
With our online MySQL editor, you can edit the SQL statements, and click on a button to view the result. ... Click on the "Try it Yourself" button to see how it works. Many chapters in this tutorial end with an exercise where you can check your ...
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ trysql.asp
The Try-SQL Editor at w3schools.com
W3Schools has created an SQL database in your browser. The menu to the right displays the database, and will reflect any changes. Feel free to experiment with any SQL statement. You can restore the database at any time. This SQL-Statement is not supported in the WebSQL Database. The example still works, because it uses a modified version of SQL. ... You are now using a light-version of the Try-SQL Editor, with a read-only Database.
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ sql_exercises.asp
SQL Exercises
SQL Examples SQL Editor SQL Quiz SQL Exercises SQL Server SQL Syllabus SQL Study Plan SQL Bootcamp SQL Certificate SQL Training ... Tip: Sign in to track your progress. ... If you haven't already, sign up to become a W3Schooler, and get points for every exercise you complete.
๐ŸŒ
W3Schools
w3schools.sinsixx.com โ€บ sql โ€บ default.asp.htm
SQL Tutorial - SinSiXX - W3Schools
Well organized easy to understand SQL tutorial with lots of examples. Including PHP, ASP, ADO, Oracle, Access, SQL Server. Related: HTML, JavaScript, XML, XQuery
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ sql_intro.asp
SQL Introduction
SQL Examples SQL Editor SQL Quiz SQL Exercises SQL Server SQL Syllabus SQL Study Plan SQL Bootcamp SQL Certificate SQL Training
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ sql_syllabus.asp
SQL Syllabus (Curriculum)
With our online SQL editor, you can edit the SQL statements, and view the result in your browser: ... If you want to explore more and host your project, we have a feature called Spaces that allows you to build, test and deploy static websites.
๐ŸŒ
W3Schools
w3schools.com โ€บ sql โ€บ sql_create_db.asp
SQL CREATE DATABASE Statement
SQL Examples SQL Editor SQL Quiz SQL Exercises SQL Server SQL Syllabus SQL Study Plan SQL Bootcamp SQL Certificate SQL Training ... The CREATE DATABASE statement is used to create a new SQL database. ... Tip: Make sure you have admin privilege before creating any database. Once a database is created, you can check it in the list of databases with the following SQL command: SHOW DATABASES; ... If you want to use W3Schools ...