0% found this document useful (0 votes)
21 views2 pages

Dbms Assignment

This document contains a query to display the name, location, and phone number of students from the Record table whose section is A, by matching the roll numbers from the Record table to those in the Student table where the section is A.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
21 views2 pages

Dbms Assignment

This document contains a query to display the name, location, and phone number of students from the Record table whose section is A, by matching the roll numbers from the Record table to those in the Student table where the section is A.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 2

Your Turn

Table: Record

Your Turn
Table: Student
By considering the table Record and
Student. Solve following Query
• Display NAME, LOCATION, PHONE_NUMBER of the
students from Record table whose section is A.
• Q
QUERY
Select Name,Location,Phone_number
From Record
Where Roll_NO IN( select Roll_No
From Student
Where section='A');

You might also like