Specify the sql queries to retrieve a list of all doctors

Assignment Help PL-SQL Programming
Reference no: EM13865680

Question:

Question For this assignment, use the following database schema:

1) Patient-PatientID, Name, DOB

2) Doctor-DoctorID, Name, MedLicenseNumber, Phone

3) Medication-MedicationID, BrandName, GenericName

4) Prescription-PrescriptionID, Date, PatientID, PrescriberID, MedicationID

Specify the SQL queries to retrieve:

1) A list of all doctors.

2) The number of patients that were born before 01/01/1994.

3) The patient information along with the ID of any prescribing doctor for each patient.

4) The prescription information along with patient name, DOB, medication brand name, and prescribing doctor name sorted by most recent date.

5) The most prescribed generic medication name.

For this assignment, use the following database schema:

1) Patient-PatientID, Name, DOB

2) Doctor-DoctorID, Name, MedLicenseNumber, Phone

3) Medication-MedicationID, BrandName, GenericName

4) Prescription-PrescriptionID, Date, PatientID, PrescriberID, MedicationID

1. select p.patient_id, p.patient_name , p.Date_Of_Birth, d.doctor_id from patient p, doctor D,prescription pr where p.patient_id = pr.patient_id , d.doctor_id = pr.prescriber_id;

2. select pr.prescription_id, pr.date, pr.patient_id, pr.prescriber_id,pr.medication_id, p.patient_name , p.Date_Of_Birth, m.brand_name,d.doctor_name from patient p, doctor D,prescription pr,medication m where p.patient_id = pr.patient_id , d.doctor_id = pr.prescriber_id,pr.medication_id = m.medication_id order by pr.date desc;

3. select m.generic_name from medication m , prescription pr where pr.medication_id = m.medication_id and pr.medication_id = (select medication_id from prescription groupby medication_id having count(1) = (select max(y.num) from (select count(1) as num from prescription groupby medication_id ) y);

Reference no: EM13865680

Questions Cloud

Define why was the document published? : why was the document published?
Should local law enforcement be playing a role in the fight : Previously we discussed how the Department of Homeland Security is tasked with addressing issues surrounding terrorism. Local law enforcement plays a part in this as well. Should local law enforcement be playing a role in the fight against terroris..
Do lowes uses differ significantly from the home depots : Which of the two basic reporting approaches for the cash flows from operating activities did Lowes use? Is this the same as what The Home Depot used? What amount of cash did Lowes receive from issuing long- term debt during the year ended January 31,..
Explain how and under what circumstances dodd-frank : client confidentiality rules limited their ability to publicly report their observations With the advent of Dodd-Frank accountants no longer need to choose between doing the right thing and risking the loss of their professional licenses Explain how ..
Specify the sql queries to retrieve a list of all doctors : Specify the SQL queries to retrieve A list of all doctors and the number of patients that were born before 01/01/1994.
Write a paper that presents findings of companys sec filings : Prepare a 6-7 page research paper that presents the findings of your analysis of the company's SEC filings. Your paper should also discuss the following: Roles, responsibilities, and objectives of internal and external auditors.
What is the cartoonist''s opinion on the issue? : What is the cartoonist's opinion on the issue?
Develop a paper design of a system : The purpose of this assignment is to develop a paper design of a system to address an important need.
What is mixed media? : What is mixed media? How did Pop Artists incorporate mixed media into their art?

Reviews

Write a Review

PL-SQL Programming Questions & Answers

  Create a database model

Create a database model and Submit the table creation statements for the Database Model.

  Write pl-sql procedures and functions

Write PL/SQL procedures and functions to populate and query that database

  Sql questions

Write a query to display using the employees table the EMPLOYEE_ID, FIRST_NAME, LAST_NAME and HIRE_DATE of every employee who was hired after to 1 January, 1995.

  Run the lab_03_01.sql script

Run the lab_03_01.sql script in the attached file to create the SAL_HISTORY table. Display the structure of the SAL_HISTORY table.

  Write sql queries

Write a query to display the last name, department number, and salary of any employee whose department number and salary both match the department number and salary of any employee who earns a commission.

  Explaining sql insert statement to insert new row in cds

Write down a SQL insert statement to insert new row in "CDS" table.

  Write down name of actors in ascending order

Write down actors (or actress, your choice, but not both) who have won at least two (2) Academy Awards for best actor/actress. Provide the actor name, movie title & year. Order the result by actor name."

  What is an sql injection attack

What is an SQL injection attack? Explain how it works, and what precautions must be taken to prevent SQL injection attacks.What are two advantages of encrypting data stored in the database?

  Determine resonant frequency in series rlc resonant circuit

Given the series RLC resonant circuit in the figure, operating at variable frequency, determine: The resonant frequency ω o ,  The circuit’s quality factor Q , The cut-off frequencies, f 1  & f 2  and the bandwidth BW

  Query that uses cube operator to return lineitemsum

Write summary query which uses CUBE operator to return LineItemSum (which is the sum of InvoiceLineItemAmount) group by Account(an alias for AccountDesciption).

  Query to show customers were missing for existing orders

As DBA, your manager called a meeting and asked why there are so many orders for customers that don't exist in the customer table. Write query which would shows which customers were missing for existing orders. Use a join or a subquery.

  Sql query into a relational algebra statement

Turn this SQL query into a relational algebra statement? SELECT Request.reqfor, Ordering.invamt, Ordering.invnbr, Ordering.invdat

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd