Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
3.4k views
in Information Technology by (45.3k points)
edited by

With reference to the above given table, write commands in SQL for (i) to (iii)

1. To display Names of Patients, TESTID and Test names for those Patients who were admitted between ’01-DEC – 2017 and ’15-DEC-2017′ (both dates inclusive). 

2. To display names of Patients, Test names and Cost of Test for those patients who have ‘Sharma’ in their names.

3. To increase the cost of those tests in the table ‘TEST’ by ₹ 50.00 that have cost below ₹ 200.00

Please log in or register to answer this question.

1 Answer

+1 vote
by (50.9k points)

SQL commands for the given statements : 

(i) SELECT NAME, TESTID, TESTNAME FROM PATIENT, TEST 

WHERE PATIENT. TESTID = TEST. TESTID AND DTADMIT BETWEEN ‘01-DEC-2017’ AND '15-DEC-2017' ; 

(ii) SELECT NAME, TESTNAME, COST FROM PATIENT, TEST 

WHERE PATIENT. TESTID = TEST. TESTID AND NAME LIKE '% Sharma %’ ; 

(iii) UPDATE TEST SET COST = COST +50 WHERE COST < 200 ;

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...