tutort™ @® www.tutortnet
MOST ASKED SQL QUESTIONS
in
Oe2NG
Curated by gg tutortacademy
4 (@)
7c) sQl |
*tutort™ @® www.utortnet
Combine Two Tables
Write an sQl query to report the first name, last name, city, and state of each person in the Person
table. If the address of a personid is not present in the Address table, report null instead.
Return the result table in any order.
Table Porson Table Address
personld int adress nw
personid cf
lastName varchar
a varchar
frstName varchar :
sate vorehar
personid is the primary key column for this aciaressia is the primary key column for this
table. This table contains information about table. Each row ofthis table contains
the 1D of some porsons and thot first ond Information about the city and state of ane
lost names. person with ID = Personi.
Questionaskedin OO@® 2NG
(sr From te
ea oy
stonsravincron | @) TARGET — Walmart>\< [Rpeeauires
OF scanned wit one Sane@® www.tutortnet
tutort™
Second Highest Salary
Write an SQL query to report the second highest salary from the Employee table. If there is no second
highest salary, the query should report null
Return the result table in any order.
Table Employee,
{dis the primary key column for this table,
eno Each row of this table contains information
‘about the salary of an employee.
a ry ploye
Question askedin OO @ 2 NG
Question. 3
Nth Highest Salary
Write an sQl query to report the nth highest salary from the Employee table. If there is no nth highest
salary, the query should report null
Table Employee
id i the primary key column for this table.
ach row ofthis table contains information
Cebout the salary of on employee.
Question askedin O)@ 2NG
OF scanned wit one Sanetutort™ @® wwwtutortnet
Rank Scores
Write an SQL query to rank the scores. The ranking should be calculated according to the
following rules:
+ The scores should be ranked from the highest to the lowest.
+ If there is a tie between two scores, both should have the same ranking.
+ After a tie, the next ranking number should be the next consecutive integer value. In other
words, there should be no holes between ranks.
Return the result table ordered by score in descending order.
Table Scores
Ids the primary key for this table
ach row of this table contains the score of a game.
Scare isa floating point value with two decimal
places
Questionaskedin OO@2NG
Lana verizon’ > Qs" Tee)
OF scanned wit one Sane@® www.tutortnet
tutort™
Consecutive Numbers
Write an SQL query to find all numbers that appear at least three times consecutively.
Roturn the result table in any order.
Table logs
ids the primary key for this table.
id is an autoincrement column,
|= |=]
a Questionaskedin OO B® 2NG
Employees Earning More Than Their Managers
Write an SQL query to find the employees who earn more than their managers.
Return the result table in any order.
Table Employee
Id Je the primary key column for this table.
Cos a ach row ofthis table indicates the ID of an
a ‘employee, their name, salary, and the IO of
their manager.
ame varchar
salary ne
managed
Question askedin OO @ 2NG
OF scanned wit one Sane@® www.tutortnet
tutort™
Duplicate Emails
Write an SQL query to report all the duplicate emails. Note that it's guaranteed that the email
field is not NULL.
Return the result table in any order.
Table person
id is the primary key column for this table,
Ls Each raw of this table contains an ema. The
‘emails will not contain uppercase letters.
Questionaskedin OO@#? 2NG
Customers Who Never Order
Write an sQl query to report all customers who never order anything,
Return the result table in any order.
Table ‘Customers Table Orders
i ine ia ine
ome varchar customer ine
Idiis tho primary key column for this table.
customerid Is foreign key of the 19 from the Custorners table,
Fach row of this table indicates the IO of an order ond the ID of the
customer who ordered it.
question aaet OO CONG.
OF scanned wit one Sane
Ids the primary key column for this tablo.
ach row of this table indicates the 10 and
name of a customer.tutort™ @® www.tutort.net
Department Highest Salary
Write an SQ. query to find employees who have the highest salary in each of the departments.
Return the result table in any order.
Table Employee Table Department
a
4
ids the primary key column for this table.
customerid is « foreign key of the ID from the Customers table.
eertmenttO ach row of this table indicates the IO of an order ond the iD of the
customer who ordered it
Idiis the primary key column for this table.
‘departmental is foreign key of the ID trom the
Department table. Each row of this table indicates
the 1, name, and salary of an employee. also
‘contains the ID oftheir department.
Question askedin OO G 2NG
Pritom Mazumdor zomato
(ny X} fe)
OF scanned wit one cance@® www.tutortnet
tutort™
Question. 10
Department Top Three Salaries
‘A company's executives are interested in seeing who earns the most money in each of the
company’s departments. A high earner in a department is an employee who has a salary in the
top three unique salaries for that department.
Write an SQL query to find the employees who are high earners in each of the departments.
Return the result table in any order.
Table Employee Table Department
Seed
varchar
Ic.is me primary key column for this table,
Each row of this table indicates the ID of a department and its
epartmentio int name.
ic is the primary key column for this table.
‘departmentid is © foreign key of the ID from the
Department table. Each row of this table indicates
the ID, name, and salary of an employee. It else
contains the ID oftheir department.
Question asked in OO @ 2@NG
0
Subhaip Chowahury > amazon 100% Hike
OF scanned wit one caertutort™ @® www.tutortnet
Question. 11
Delete Duplicate Emails
Write an SQL query to delete all the duplicate emails, keeping only one unique email with the
smallest id. Note that you are supposed to write a DELETE statement and not a SELECT one.
After running your script, the answer shown is the Person table. The driver will first compile and
run your piece of code and then show the Person table. The final order of the Person table does
not matter.
Table Person
Ids the primary key column for this table.
ach row of this table contains an email. The emails will nat contain
uppercase letters.
Question askedin OO) @ 2NG
From To eed
Corals Amat} FAC# —> JPMorgan -inee
een
Pucrgen case
OF scanned wit one Sane@® www.tutortnet
tutort™
Question. 12
Rising Temperature
Write an SQL query to find all dates’ Id with higher temperatures compared to its previous dates
(yesterday).
Return the result table in any order.
Table Weather
i
recordDate
Id isthe primary key for this table,
‘This table contains information about the temperature on a certain
doy.
Question asked in OO 2 NG
DSA with System = Data Science & e
Design f Machine Learning s
— i — Mma]
Full Stack with Full Stack Data
Science (Al & ML)
_. "&
MERN,
OF scanned wit one Sanetutort™ @® www.tutortnet
Question. 13
Trips and Users
The cancellation rate is computed by dividing the number of canceled (by client or driver)
requests with unbanned users by the total number of requests with unbanned users on that
day.
Write a SQL query to find the cancellation rate of requests with unbanned users (both client and
driver must not be banned) each day between “2013-10-01 and "2013-10-03". Round
Cancellation Rate to two decimal points.
Return the result table in any order.
Table Users
Column Name
Lusers_ic ie the primary key for this table
‘Te table holds all users. Each user has 0 unique users and role
Is an ENUM type of (cliont, ‘iver, partner)
bbonned is an ENUM type of (Yes, No)
Question askedin OO}@R 2NG
Aditya . arora Kero e(-9
ST
OF Scanned wit one cance@® www.tutortnet
tutort™
fo]UT=ii[o]a mary
Find Customer Referee
Write an SQL query to report the names of the customer that are not referred by the
customer with id = 2.
Return the result table in any order.
Table Customer
ids the primary key column for this table.
OH: Each raw of this table indicates the id of @
customer, their name, and the id of the customer
who referred them.
referee i
Question askedin OO@® 2NG
Question. 15
Customer Placing the Largest Number of Orders
Write an sQl query to find the customer _number for the customer who has placed the largest
number of orders,
The test cases are generated so that exactly one customer will have placed more orders than any
other customer.
Table Orders
id is the primary key column for this table,
Girt ach row of this table indicates the IO andl
name of @ customer
order number
customer number
Question askedin OO @ 2NG
OF scanned wit one Sanetutort™ @® wwwotutortnet
Question. 16
Big Countries
A country is big if:
+ it has an area of at least three million (j.e., 3000000 km2), or
+ itlhas a population of at least twenty-five million (ie. 25000000)
Write an SQL query to report the name, population, and area of the big countries.
Return the result table in any order.
Table World
nome varchar
continent vorenae
area ine
population int
ado
‘name is the primary key column for this table
Each row of this table gives information about the name of a
country, the continent to which it belongs, its area, the population,
‘and its GOP value,
Question askedin (X)@ 2NG
rom to
ceeinereaa TLO > Google (rele
OF scanned wit one Sanetutort™ @® wwwtutortnet
Classes More Than 5 Students
Write an SQL query to report all the classes that have at least five students.
Return the result table in any order.
Table Courses
(stuclent, class) is the primary key column for
eo ar ‘Sethe
f= | =| Each row of this table indicates the name of a
seen varchar
student ond he lass inwtch they are enrolled
Question askedin OO @ 2NG
Question. 18
Human Traffic of Stadium
Write an sQl query to display the records with three or more rows with consecutive id's, and the
number of people is greater than or equal to 100 for each.
Return the result table ordered by visit_date in ascending order.
Table Stadium
Visit_dote isthe primary key for this table.
oe Each row of this table contains the visit date and visit id to
a the stadium with the number of people during the visit
No two rows will have the gare vilt_date, ond as the id
vist date increases, the dates increase as wel
people
Question askedin O)@ 2NG
OF scanned wit one Sanetutort™ @® wwwtutortnet
Question. 19
Sales Person
Write an SQL query to report the names of all the salespersons who did not have any orders
the name "RED".
related to the company
Return the result table in any order.
Table SalesPerson Table Orders
hire date
‘les _idis the primary key column for this table. ‘order_id isthe primary key column for this table.
ach row of this table indicates the name and! the ‘com_id is @ foreign key to com i from the Company
ID of a salesperson alongside their salary, toble. sales_id is @ foreign key to sales id from the
commission rate, and hire date. SalesPerson table, Each row of this table contains
information about one order. This includes the ID of the
‘company, the 1D of the salesperson, the date of the
‘order, and the amount poi,
Table Company
‘com_id is the primary kay column for this table.
CColurn Name ach row of this table indicates the name and the
ID of a company and the city in which the
come i company is located,
name varchar
ety varchar
Question asked in OO 2NG
OF scanned wit one Sanetutort™
Tree Node
Each node in the tree can be one of three types:
+ ‘Leaf: if the node is a leaf node.
+ 'Root’: if the node is the root of the tree.
+ ‘Inner’ If the node is neither a leaf node nor a root node.
Write an SQL query to report the type of each node in the tree.
Retum the result table in any order.
Table Tree
Ids the primary key column for this table.
Each row of this table contains information about the id of @ node
Cand the id of its parent node in tree.
‘The given structure Is always a valid tree
Question asked in
@® www.tutortnet
DSA with system
Design
Full Stack with
MERN,
Data Science &
Machine Learning s
Full Stack Data
Science (Al & ML)
_. ">
OF scanned wit one Sanetutort™ @® www.tutortnet
Not Boring Movies
Write an SQL query to report the movies with an odd-numbered ID and a description
that is not "boring’.
Return the result table ordered by rating in descending order.
Table cinema
id
description
rating
ids the primary key for this table.
Fach row contains information about the name of a movie,
its genre, and its rating
rating Is a2 decimal places float in the range [0,10]
a Question askedin OO}@® 2NG
To Pee
Tales le
> & cat
Sivani yada
OF scanned wit one Sane@® www.tutortnet
tutort™
Question. 22
Exchange Seats
Write an SQL query to swap the seat id of every two consecutive students. If the number of
students is odd, the id of the last student is not swapped.
Retum the result table ordered by id in ascending order.
Table Seat
ic ls the primary key column for this table,
coisoo tere ach row ofthis table indicates the name and
the 0 of a student.
id is a continuous increment.
varehar
Question askedin OO @ 2NG
Question. 23
Swap Salary
Write an SQL query to swap alll f and ‘m' values (i.e., change all 'f values to 'm' and vice versa) with a
single update statement and no intermediate temporary tables.
Note that you must write a single update statement, do not write any select statement for this problem.
Table salary
idis tho primary key for this table
‘The sex column is ENUM value of type (1).
ne The table contains information about on employee.
vrehar
ENUM
question aaet OO CONG
OF scanned wit one Sanetutort™
Actors and Directors Who
Cooperated At Least Three Times
Write a SQL query for a report that provides the pairs (actor _id, director_id) where
the actor has cooperated with the director at least three times.
Return the result table in any order.
Table ActorDirector
Coen
actor id
cleoctor is
‘Smestame
timestamp is the primary key column for this table.
Questionaskedin OO@® ANG
From To Cena
> @ Sect]
oon
Sivani yada |
OF scanned wit one Sanetutort™ @® www.tutortnet
Sales Analysis III
Write an SQL query that reports the products that were only sold in the first quarter of
2019. That is, between 2019-01-01 and 2019-03-31 inclusive.
Return the result table in any order.
Table Sales Table Product
ed Cod
seller td product id
product a product name
buyer id unit price
sale date
ony product_id is the primary key of this table.
price Each row of this table indicates the name
‘and the price of each product
This table has no primary key, It con have
repeated rows, product_Id isa foreign key
to the Product table, Each row ofthis table
contains some information about one sale.
Question asked in OO@® 2NG
Goldman rae a thie)
sins tcs > Sethe
sa Coren Se eng
OF scanned wit one Sanetutort™
Game Play Analy:
Write an SQL query to report the first login date for each player.
Return the result table in any order.
Table Activity
device id
event date
ames. played
(Poyer_to, event _dote) isthe primary key of this table.
This table shows the activity of players of some games.
Each row isa record of « player who logged in and played &
number ot games (possibly 0) betore logging out on
someday using some dovice
a Question askedin OO}@® 2NG
From To panes
sratencngrace “Seres — @TARGET [iteaiire
Seat Tage
OF scanned wit one Sanetutort™ @® www.tutortnet
User Activity for the Past 30 Days |
Write an SQL query to find the daily active user count for a period of 30 days ending
2019-07-27 inclusively. A user was active on someday if they made at least one
activity on that day.
Return the result table in any order.
Table Activity
userid
session id
activity. date
activity type
“There is no primety key fortis table, it may have duplicate rows.
The activity type coluranis an ENUM of type (open_session,
“ond session, scroll_down, send_message).
‘The table shows the user activities for @ social media wobstte.
Note that each session belongs to exactly ene user.
Question askedin OO @ 2NG
From Te
Avishkar Dalvi
> vmware 245% Hike
OF scanned wit one Sanetutort™ @® wwwtutortnet
Article Views |
Write an SQL query to find all the authors that viewed at least one of their own articles.
Return the result table sorted by id in ascending order.
Table Activity
es
tile i
authori
viewer id
view date
There is no primary key for this table, it may have duplicate rows
Each row ofthis table indicates that some viewer viewed on article
(written by some author) on some date.
Note thet equal author _id and viewer_id incicate the same person.
Questionaskedin OO@® ANG
8 To meee
subhaip choy > amazon 100% Hike
OF scanned wit one Sanetutort™ @® wwwtutortnet
Market Analysis |
Write an SQL query to find for each user, the join date and the number of orders they
made as a buyer in 2019,
Return the result table in any order.
Table Orders Table Users
order i wen
wee tat Join date te
itemia
favorite. brand vorehor
buyer id
seller id
User_id is the primary key of this table.
This table has the info of the users of an online
‘shopping website whore users can sell and buy
‘order_Id is the primary key of this table.
Item id is foreign key to the items table.
buyer _id and seller_id are foreign keys to the
Users table.
Table Items
item ia ine
item. brand varchar
Itemid is the primary key ofthis table
Questionaskedin O)V@#? 2ANG
OF scanned wit one Sanetutort™ @® wwwtutortnet
Reformat Department Table
Write an SQL query to reformat the table such that there is a department id column
and a revenue column for each month.
Return the result table in any order.
Table Department
i
varchar
(la, montn) is the primary Key ofthis table. The tabie nas
information about the revenue of each department per month.
‘The month has values in
['yan'Feb"’Mar’’Apr"”Moy’"Jun'"Jul'"Aug’'Sep'70ct"’Nov'’Dec']
Question askedin OO @ 2NG
Lela
From To
caeinewrees TO > Google (rele
OF scanned wit one Sanetutort™ @® www.tutortnet
Capital Gain/Loss
Write an SQL query to report the Capital gain/loss for each stock.
The Capital gain/ioss of a stock is the total gain or loss after buying and selling the
stock one or many times.
Return the result table in any order.
Table Stocks
aoa
stock name votenae
operation enum
operation day int
price ine
(stock_name, operation day) isthe primary key for this table.
‘The operation column is an ENUM of type (‘Selt, Buy)
Fach row ofthis table indicates that the stock which has stock nome
had an operation on the day operation day withthe price,
Itis guaranteed that each ‘Self operation for a stock has a
‘corresponding Buy operation in @ previous day, iis clso guaranteed
that each Buy’ operation for @ stock has a corresponding ‘el operation
inn upcoming dey.
Question askedin O)}@ 2NG
> Goldman Seeds)
Arpita Basak Seane eee
OF scanned wit one Sanetutort™
Top Travellers
@® www.tutortnet
Write an SQL query to report the distance traveled by each user.
Return the result table ordered by travelled_distance in descending order, if
two or more users traveled the same distance, order them by their name in
ascending order.
Table Rides
a
ser id
distance
Idle the primary key for this table.
Lser_idis the id of the user who traveled the
distance “distance”
From
JPMoRGAN
Nikesh Bisen Chase & Co.
Softee Erg a
Table Users
varchar
Ids the primary key for this table,
‘name is the name of the user
OG2eNG
Question asked in
To
> HE nicrosoft
coon
120% Hike
OF scanned wit one Sanetutort™ @® www.tutortnet
Group Sold Products By The Date
Write an SQL query to find for each date the number of different products sold and
their names.
The sold products names for each date should be sorted lexicographically.
Return the result table ordered by sell_date.
Table Activities
call date
‘There is no primary key for this table, it may
contain duplicates. Fach row of this table contains
the product namo and the date it was sold in a
tore
erase Question askedin (XY) @ 2NG
Service Based
semi > & ee
OF scanned wit one Sanetutort™ @® wwwotutortnet
Question. 34
Patients With a Condition
Write an SQL query to report the patient_id, patient_name and conditions of the
patients who have Type | Diabetes. Type | Diabetes always starts with DIABI prefix
Retum the result table in any order.
Table Patients
patent id int
patient name varchar
conditions verehar
pationt_idis the primary key for this table.
‘conaitions' contains 0 or more code separated by
spaces. This table containe information of the
Patients in the hospital
DSA with system
Design
Full Stack with
MERN,
Question askedin OO}@ 2NG
Data Science &
Machine Learning 2
Full Stack Data
Science (Al & ML)
_.
OF scanned wit one Sanetutort™ @® www.tutortnet
Customer Who Visited but Did Not
Make Any Transactions
Write a SQL query to find the IDs of the users who visited without making any
transactions and the number of times they made these types of visits.
Return the result table sorted in any order.
Table Transactions Table Visits
~— | ee | ps |
visi
slt_Id fs the primary key for this taba.
transaction _Id isthe primary key for this table. This table contains information about the
This toble contains information about the customers who visited the mall
tuoneactions made during the visit_i.
Question asked in OG 2NG
Goldman Saari e)
sins tcs > Sethe
eng
OF scanned wit one Sanetutort™ @® wwwotutortnet
Bank Account Summary II
Write an SQL query to report the name and balance of users with a balance higher
‘than 10000. The balance of an account is equal to the sum of the amounts of all
transactions involving that account.
Return the result table sorted in any order.
Table Transactions Table Users
trans id
varchae
tronsacted.on
‘account isthe primary key for this table.
ach row ofthis table contains the account
umber of each user in the bank
trans iis the primary Key for this table
Each row of this table contains all changes mace
1o.all accounts. amount is poskive If the user
‘There will be no two users having the same name
Inthe tabi.
received money and negative if they transterredt
money,
All accounts start with a balance of 0.
Question asked in OO @ 2@NG
a
cramps “Seres — @TARGET [iteaiire
OF scanned wit one Sanetutort™
Question. 37
@® www.tutortnet
Fix Names in a Table
Write an SQl. query to fix the names so that only the first character is uppercase and the rest
are lowercase.
Return the result table ordered by user_id.
Table
Users
varehar
lactase
Question. 38
Luser_Id fs the primary key for this table,
This table contains the ID end the name of the
sor. The name consists of only lowercase and
uppercase choracters,
Question askedin OO @ 2NG
Daily Leads and Partners
Write an sQl query that will, for each date_id and make_name, return the number of distinct
lead _id's and distinct partner _id's
Return the result table in any order
Table
ate a
rake. name
leadia
partner id
Dailysales
ate
vrehar
This table does not have a primary key.
‘This table contains the date and the name of the product
sold and the 1Ds of the lead and partner it was sold to,
The name consists of only lowercase English letters.
Question askedin OO) @ 2NG
OF scanned wit one Sanetutort™
Find Followers Count
@® www.tutortnet
Write an SQl query that will, for each user, return the number of followers.
Return the result table ordered by user_id in ascending order.
Table Followers
userid
follower id
(user ic fotower_id) isthe primary key fortis table
Thi table contains the 0s of a user and a follower in a
social media app where the folower folows the user
DSA with system
Design
an
Full Stack with
MERN. a
sae MA
Question asked in OO@® 2NG
Data science & 2
Machine Learning ; J
Full Stack Data
Science (Al & ML)
OF scanned wit one Sanetutort™ @® www.tutortnet
Question. 40
Find Total Time Spent by Each Employee
Write an SQL query to calculate the total time in minutes spent by each employee on
each day at the office. Note that within one day, an employee can enter and leave
more than once. The time spent in the office for a single entry is out_time - in_time.
Return the result table in any order.
Table Employees
(emp_i event day, in_tim) Is the primary key ofthis table.
‘The table shoves the employees’ entries and exits in an office
‘event day isthe day ot which this event happened, in_time is the minute at which the employee entered the
‘fico, and out timo is tho minuto at which thoy lot the otic.
in_time and out_time are between land 1440,
Its guranteed thet no two events on the same day intersect in time, end in_time « out_time.
question askedin (X)@ 2NG
To ene
Tales tlle
> & cea
Sivani yada
OF scanned wit one Sane@® www.tutortnet
tutort™
Question. 41
Recyclable and Low Fat Products
Write an SQL query to find the ids of products that are both low fat and recyclable.
Return the result table in any order.
Table Users
product idis the primary key for this table,
tow_fats is an ENUM of type (YN) where Y means this
out product is low fat and N' means itis not
_ recyclable is an ENUM of types ('V, N) where 'Y means this
tom fats product is recyclable and N means itis not
recylable
aa Question asked in OO@B 2NG
Questi od
Rearrange Products Table
Write an SQL query to rearrange the Products table so that each row has (product_id, store, price). If
@ product is not available in a store, do not include a row with that product_id and store
combination in the result table.
Return the result table in any order.
Table Products
product_id is the primary key for this table,
Each row in this table indicates the produets price in 3
dct different stores: storel,store2, and store.
Prose It the product is not available in store, the price willbe null
storet in that store's column.
stored
stored
Questionaskedin OQO@® 2NG
OF scanned wit one Sanetutort™ @® www.tutortnet
Question. 43
Calculate Special Bonus
Write an SQL query to calculate the bonus of each employee. The bonus of an
employee is 100% of their salary if the ID of the employee is an odd number and the
employee name does not start with the character 'M. The bonus of an employee is 0
otherwise.
Return the result table ordered by employee_id.
Table Employees
Coe
employee id
salary
(emp _id, event_day, in_time) is the primary key of this table,
Te table shows the employees’ entries end exits in an office.
‘event_day is the day at which this event happened, in_time is the minute at which the employee entered the
office. and out time is the minute at which they lef the office.
in_time andl out time are between I and 1440,
It ie guaranteed that no two events on the same day intersect In time, and in_time « out_time.
question askedin (X)@ 2NG
From To
coon
ites nan UMoweax > MM Microsoft [Meas
OF scanned wit one Sanetutort™ @® wwwotutortnet
Question. 44
The Latest Login in 2020
Write an SQL query to report the latest login for all users in the year 2020. Do not
include the users who did not login in 2020.
Return the result table in any order.
Table Logins
(user i, time _stomp) is the primary key for this table.
Each row contains information about the login time for the user with ID user_id
Questionaskedin OQ) 2 NG
DSA with System = Data Science & 2
Design t Machine Learning 2
— i — Mma]
Full Stack with Full Stack Data
MERN Science (Al & ML)
_.
OF scanned wit one Sanetutort™
@® www.tutortnet
Employees With Missing Information
Write an SQL query to report the IDs of all the employees with missing information. The
information of an employee is missing if:
+ The employee's name is missing, or
+ The employee's salary is missing.
Return the result table ordered by employee_id in ascending order.
Table Employees
employee id ine
ame varehar
employee_id isthe primary key for this table.
Fach row ofthis table indicates the name of the
employee whose ID Is employee i
TiLd
Basant Pratap Singh
Table salaries.
employes id
‘employee i isthe primary key for this table,
Each row ofthis table indicates the salary of the
‘employee whose ID is employee id
OéeNnG
Question asked in
> Google Waeane
OF scanned wit one SaneStart your
Upskilling with us
Join our Job-Oriented Programs
Explore More
Qo Watch us on Youtube Q Read more on Quora
xplore our seS
ous ee Cu ¢€ leas eae any
Sisko) Serre tus
Follow us on
Linked ffi) (Instagram YouTube
& Phone E-mail Address
+81-8712338901
[email protected] 100}, Shilpitha Splendour Annex,
Bengaluru, Karnataka 560048
u
OF scanned wit one Sane