Assignment - 2: Database
Assignment - 2: Database
DATABASE-
1. List the doctors names and specialization those have no patient allotted.
2.
List all details of patient table and bill amount in increasing order with the concession
of 10%.
3. Find all the name, age, address, mobile of Dr. D. S. Baharani patient.
4. Find the patient name, age, gender, address and doctor name who suffered from
Heart problem.
5.Find the doctors detail whose address has the substring as “town”.
QUERY- SELECT *
FROM doctor
WHERE address LIKE "%town%";
6. Find the patient name, age, address, diagnosis, doctor name order by doctor name.
7.
Find the patient details with bill amount greater than 7000 in ascending order.