0% found this document useful (0 votes)
8 views15 pages

SQL+CodeEval+ +guide

The document is a guide for using the SQL CodeEval platform, which allows users to write and execute SQL queries while providing feedback on their correctness. It includes instructions for accessing the platform, testing queries, and utilizing an AI Mentor for assistance. Additionally, it outlines usage guidelines and best practices for writing SQL queries effectively.

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)
8 views15 pages

SQL+CodeEval+ +guide

The document is a guide for using the SQL CodeEval platform, which allows users to write and execute SQL queries while providing feedback on their correctness. It includes instructions for accessing the platform, testing queries, and utilizing an AI Mentor for assistance. Additionally, it outlines usage guidelines and best practices for writing SQL queries effectively.

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/ 15

subhadeepseal1@gmail.

com
EUVBQS86XL SQL CodeEval Guide

This file is meant for personal use by subhadeepseal1@gmail.com 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 CodeEval

● An online SQL editor platform similar to the SQL playground

● You can write and execute SQL queries

● Unlike SQL Playground, it compares the output of the user query with the expected

output defined in the backend to determine if the query is correct


subhadeepseal1@gmail.com
EUVBQS86XL
● AI Mentor is enabled to provide instant, personalized guidance

This file is meant for personal use by subhadeepseal1@gmail.com 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 CodeEval

subhadeepseal1@gmail.com
EUVBQS86XL

START

This file is meant for personal use by subhadeepseal1@gmail.com 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.
subhadeepseal1@gmail.com
EUVBQS86XL Usage Guidelines

This file is meant for personal use by subhadeepseal1@gmail.com 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 question along
with the table schema to be used for
answering the question.

You can start


subhadeepseal1@gmail.com
EUVBQS86XL writing the SQL
queries here.

This file is meant for personal use by subhadeepseal1@gmail.com 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.
Once you write the query for
the question, click on “TEST
SQL” and the “Test SQL”
button to run and evaluate it
subhadeepseal1@gmail.com
EUVBQS86XL

If the test cases are


passed, a message will
appear here informing
you regarding the same.

This file is meant for personal use by subhadeepseal1@gmail.com 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 one or more test cases fail,
a message will appear
informing you regarding the
same, along with the error
subhadeepseal1@gmail.com that was encountered.
EUVBQS86XL

This file is meant for personal use by subhadeepseal1@gmail.com 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.
In case you are stuck, you
can click on “Get Hints from
AI Mentor” or click on “AI
MENTOR” and then on
subhadeepseal1@gmail.com “Generate Hints” to get
EUVBQS86XL
assistance from the AI
regarding how to approach
the particular question.

This file is meant for personal use by subhadeepseal1@gmail.com 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.
Once you solve the question,
click on “Next” to solve the
subhadeepseal1@gmail.com another question.
EUVBQS86XL

This file is meant for personal use by subhadeepseal1@gmail.com 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.
Once you’ve
attempted all the
questions, click on
the “Submit” button.
subhadeepseal1@gmail.com
EUVBQS86XL

This file is meant for personal use by subhadeepseal1@gmail.com 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.
Please wait 5 to 10 minutes for the
quiz points to be updated on the
dashboard.

subhadeepseal1@gmail.com
EUVBQS86XL

Click on “Continue”
for the upcoming
content

Click on “RETAKE” if
you want to attempt
the practice quiz
again
This file is meant for personal use by subhadeepseal1@gmail.com 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.
subhadeepseal1@gmail.com
EUVBQS86XL Dos and Don’ts

This file is meant for personal use by subhadeepseal1@gmail.com 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
● Use “TEST SQL” to execute and test the SQL queries.

● Use "AI Mentor" to get assistance with the queries in case you are stuck.

● Kindly wait 5 to 10 minutes for the quiz points to be updated on the dashboard.

● You can RETAKE the quiz at any time to make multiple attempts.
subhadeepseal1@gmail.com
● The SQL playground is set to display only 10 rows of output at max.
EUVBQS86XL

○ Even if you attempt to output more rows, it’ll display only 10 rows

● 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

This file is meant for personal use by subhadeepseal1@gmail.com 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
● Always enable “CAPS LOCK” key on the keyboard to write queries in uppercase in the SQL

Playground

○ There are certain instances where the SQL syntax will fail if the query isn’t written in uppercase

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


subhadeepseal1@gmail.com SELECT COUNT(*) FROM TABLE;
EUVBQS86XL

instead of

select count(*) from table;

This file is meant for personal use by subhadeepseal1@gmail.com 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! !
subhadeepseal1@gmail.com
EUVBQS86XL

This file is meant for personal use by subhadeepseal1@gmail.com only.


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

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy