Skip to content

Commit e1a6c31

Browse files
authored
Create # 8
1 parent e4605f2 commit e1a6c31

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

w3resource/# 8

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 8. From the following table, write a SQL query to find those employees who work as same designation of FRANK. Return complete information about the employees.
2+
3+
4+
select * from employees
5+
where job_name =
6+
(Select job_name from employees
7+
where emp_name ='FRANK')
8+
;

0 commit comments

Comments
 (0)