0% found this document useful (0 votes)
5 views14 pages

SQL+Playground+ +Guide

The SQL Playground Guide provides an overview of a web-based tool for writing, executing, and testing SQL queries with a pre-configured database. It includes usage guidelines, dos and don'ts for effective query execution, and emphasizes the importance of using uppercase for SQL syntax. The guide also notes that the output is limited to a maximum of 10 rows, and users should comment out unnecessary queries to view specific outputs.

Uploaded by

subhadeepseal1
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views14 pages

SQL+Playground+ +Guide

The SQL Playground Guide provides an overview of a web-based tool for writing, executing, and testing SQL queries with a pre-configured database. It includes usage guidelines, dos and don'ts for effective query execution, and emphasizes the importance of using uppercase for SQL syntax. The guide also notes that the output is limited to a maximum of 10 rows, and users should comment out unnecessary queries to view specific outputs.

Uploaded by

subhadeepseal1
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

subhadeepseal1@gmail.

com
EUVBQS86XL SQL Playground Guide

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Introduction to SQL Playground

● A SQL playground is a web-based tool that lets you write, execute, and test SQL queries in an

interactive environment.

● Includes a pre-configured database with tables and sample data, so you can focus on writing

queries without setting up a local database.


[email protected]
EUVBQS86XL
● Allows you to run queries and see immediate results, making it useful for learning,

practicing, or experimenting with SQL.

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Accessing SQL Playground

[email protected]
EUVBQS86XL

START

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
[email protected] START
EUVBQS86XL

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
[email protected]
EUVBQS86XL Usage Guidelines

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Here you can find the description of
the SQL Playground

You can start


[email protected]
EUVBQS86XL writing the SQL
queries here.

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Scroll down in the
the description to
find all the table
[email protected]
EUVBQS86XL schemas available.

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
[email protected]
EUVBQS86XL

Once you’ve written the query,


click on “RUN SQL” and then
“Execute” to execute your query

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
If you want to
enter the full
screen view,
please click this
icon
[email protected]
EUVBQS86XL

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Press “Esc” or
click this icon to
exit the full
screen view

[email protected]
EUVBQS86XL

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
[email protected]
EUVBQS86XL Dos and Don’ts

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
SQL Playground: Do’s and Don’ts
● Always use “RUN SQL” option to execute and practice queries

● DO NOT USE “TEST SQL” option in the SQL Playground

● Always enable “CAPS LOCK” key on the keyboard to write queries in uppercase in the SQL

Playground
[email protected]
○ There are certain instances where the SQL syntax will fail if the query isn’t written in uppercase
EUVBQS86XL

○ Example: If you want to count the number of rows in records, use

SELECT COUNT(*) FROM TABLE;

instead of

select count(*) from table;

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
SQL Playground: Do’s and Don’ts
● When executing multiple queries, SQL Playground will display the output for ALL queries

○ In case you want to view the output of one or more specific queries, kindly comment out the

rest of the queries and then test the code

● The SQL playground is set to display only 10 rows of output at max.


[email protected]
○ Even if you attempt to output more rows, it’ll display only 10 rows
EUVBQS86XL

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action.
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.
Happy
PowerLearning
Ahead! !
[email protected]
EUVBQS86XL

This file is meant for personal use by [email protected] only.


Sharing or publishing the contents in part or full is liable for legal action. 14
Proprietary content. © Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited.

You might also like