Skip to content

Commit 66c777f

Browse files
authored
Create # 18
1 parent a2d38fc commit 66c777f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

w3resource/# 18

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
18. From the following table, write a SQL query to find the highest paid employee. Return complete information about the employees.
2+
3+
SELECT *
4+
FROM employees
5+
WHERE salary IN
6+
(SELECT max(salary)
7+
FROM employees)
8+
;

0 commit comments

Comments
 (0)