SlideShare a Scribd company logo
Question 1. Retrieve the first and last names and department
number and name of all employees directly supervised by James Borg.
Show results in ascending alpha order (by last name and then first
name).
Column Headings: FNAME LNAME DNUMBER DNAME
Solution
select FNAME,LNAME,DNUMBER,DNAME
from TABLE_NAME where DNAME = 'James Borg'
order by LNAME,FNAME;

More Related Content

PDF
Blossom Corporation had 120,000 common shares outstanding on Decembe.pdf
PDF
A system experiences a phase change from liquid to solid. Is this exo.pdf
PDF
Write an equation of a tangent function with the following characters.pdf
PDF
Why is a mixture of alcohol and water used, rather than simply water.pdf
PDF
Why are the 1960s relatively turbulentSolutionAnswer1960s .pdf
PDF
When acting as a neurotransmitter NO binds to the iron atom in vario.pdf
PDF
Which of the following are reasons that Drosophila are an ideal exper.pdf
PDF
What Michael acceptor is needed for the conjugate addition Beta - .pdf
Blossom Corporation had 120,000 common shares outstanding on Decembe.pdf
A system experiences a phase change from liquid to solid. Is this exo.pdf
Write an equation of a tangent function with the following characters.pdf
Why is a mixture of alcohol and water used, rather than simply water.pdf
Why are the 1960s relatively turbulentSolutionAnswer1960s .pdf
When acting as a neurotransmitter NO binds to the iron atom in vario.pdf
Which of the following are reasons that Drosophila are an ideal exper.pdf
What Michael acceptor is needed for the conjugate addition Beta - .pdf

More from SALES97 (20)

PDF
What is the role of intuition in decision-makingSolutionIntui.pdf
PDF
What is the difference between a HTML element’s id attribute and nam.pdf
PDF
What happens when youre Running Scripts without a console in Linux.pdf
PDF
TrueFalse A virtual private network is a way to use the Internet to.pdf
PDF
The total physical units accounted for is the sum of the units co.pdf
PDF
The problem can be found below. I would like someone to run this. I .pdf
PDF
The probability that a teacher will give an unannounced test duri.pdf
PDF
The Orlando MedicalOrlando Medical Corporation financial statements.pdf
PDF
The IP network is a virtual network and must rely on a link layer ne.pdf
PDF
Table 1 Endowment of Labor and Capital US 100 20 Canada 10 Workers Ma.pdf
PDF
State if you agree or disagree with the statement made and whyLes.pdf
PDF
subject.....project management.Tools and Processes Based on the pr.pdf
PDF
Read and discuss the following three articles 1. ACAs Perform.pdf
PDF
Polysaccharides, lipids, and proteins are similar in that they A) ar.pdf
PDF
Please make the complete program, Distinguish between header files a.pdf
PDF
Part CYou are a graduate student in the lab of a famous fly geneti.pdf
PDF
Part A Calculations for Solution Preparation d. Calculate the mass o.pdf
PDF
In java.Write a class called GenDoubleLinkedList which is a generi.pdf
PDF
Let G and H be disjoint events in some sample space . The probabilit.pdf
PDF
Introduction to IT compliance program and Discuss the challenges IT .pdf
What is the role of intuition in decision-makingSolutionIntui.pdf
What is the difference between a HTML element’s id attribute and nam.pdf
What happens when youre Running Scripts without a console in Linux.pdf
TrueFalse A virtual private network is a way to use the Internet to.pdf
The total physical units accounted for is the sum of the units co.pdf
The problem can be found below. I would like someone to run this. I .pdf
The probability that a teacher will give an unannounced test duri.pdf
The Orlando MedicalOrlando Medical Corporation financial statements.pdf
The IP network is a virtual network and must rely on a link layer ne.pdf
Table 1 Endowment of Labor and Capital US 100 20 Canada 10 Workers Ma.pdf
State if you agree or disagree with the statement made and whyLes.pdf
subject.....project management.Tools and Processes Based on the pr.pdf
Read and discuss the following three articles 1. ACAs Perform.pdf
Polysaccharides, lipids, and proteins are similar in that they A) ar.pdf
Please make the complete program, Distinguish between header files a.pdf
Part CYou are a graduate student in the lab of a famous fly geneti.pdf
Part A Calculations for Solution Preparation d. Calculate the mass o.pdf
In java.Write a class called GenDoubleLinkedList which is a generi.pdf
Let G and H be disjoint events in some sample space . The probabilit.pdf
Introduction to IT compliance program and Discuss the challenges IT .pdf
Ad

Recently uploaded (20)

PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PPTX
Unit 4 Computer Architecture Multicore Processor.pptx
PPTX
Introduction to Building Materials
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PDF
HVAC Specification 2024 according to central public works department
PDF
Empowerment Technology for Senior High School Guide
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PDF
1_English_Language_Set_2.pdf probationary
PPTX
History, Philosophy and sociology of education (1).pptx
PDF
Computing-Curriculum for Schools in Ghana
PDF
advance database management system book.pdf
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
PDF
IGGE1 Understanding the Self1234567891011
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PDF
Indian roads congress 037 - 2012 Flexible pavement
PDF
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
What if we spent less time fighting change, and more time building what’s rig...
Chinmaya Tiranga quiz Grand Finale.pdf
Unit 4 Computer Architecture Multicore Processor.pptx
Introduction to Building Materials
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
HVAC Specification 2024 according to central public works department
Empowerment Technology for Senior High School Guide
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
1_English_Language_Set_2.pdf probationary
History, Philosophy and sociology of education (1).pptx
Computing-Curriculum for Schools in Ghana
advance database management system book.pdf
Practical Manual AGRO-233 Principles and Practices of Natural Farming
202450812 BayCHI UCSC-SV 20250812 v17.pptx
CISA (Certified Information Systems Auditor) Domain-Wise Summary.pdf
IGGE1 Understanding the Self1234567891011
Paper A Mock Exam 9_ Attempt review.pdf.
Indian roads congress 037 - 2012 Flexible pavement
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
Weekly quiz Compilation Jan -July 25.pdf
What if we spent less time fighting change, and more time building what’s rig...
Ad

Question 1. Retrieve the first and last names and department numbe.pdf

  • 1. Question 1. Retrieve the first and last names and department number and name of all employees directly supervised by James Borg. Show results in ascending alpha order (by last name and then first name). Column Headings: FNAME LNAME DNUMBER DNAME Solution select FNAME,LNAME,DNUMBER,DNAME from TABLE_NAME where DNAME = 'James Borg' order by LNAME,FNAME;