Looking for INF 202 Database Management Systems 1 (Meruyert Raiymbekova) test answers and solutions? Browse our comprehensive collection of verified answers for INF 202 Database Management Systems 1 (Meruyert Raiymbekova) at moodle.sdu.edu.kz.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Using the schema:
STUDENT(Sid, Sname, Gender, Age, EntranceYear, GPA)
DEPT(Did, Dname)
PROF(Pid, Pname, Did, Birth_Date)
COURSE(Cno, Did, Cname)
SECTION(Sectno, Did, Cno, Pid)
ENROLL(Eid, Sid, Cno, Sectno, Grade)
Which of the following SQL queries correctly show department IDs and course names?(Select all that apply)
What does the following query do?
Select name, ID, branch
from student, department
where student. branch = department.branch;
____________ is the preferred method for enforcing data integrity
Which of the following syntax of the basic query is correct?
Find students whose name starts with ‘S’ and last name ends with ‘s’?
Which of the following clauses is used to group a set of rows based on a column or set of columns?
If a table’s attributes depend on the whole primary key (not just part), it is in:
Which is the correct sql statement (Choose all that apply)
______ returns all the columns from the table on the right even if no matching rows have been found in the table on the left.
Which of the following functions can be used without GROUP BY clause in SELECT query? (Choose all that apply)