SQL practice

Some Advance Practice SQL queries and solutions

Q1) List the SSN of all employees who work on exactly same set of projects as employee with SSN  '123456789' *  select essn  from works_on where pno in(select pno from works_on where essn='123456789') having count(*)=(…

Admin
Load More
That is All