Database Management SystemTU Board 2025
Consider the following tables of a database: Instructor (InstructorID, InstructorName, JobStatus) Subject (SubCode, SubjectName, CreditHours) Taught (Subcode, InstructorID, Semester) Write SQL…
10Consider the following tables of a database: Instructor (InstructorID, InstructorName, JobStatus) Subject (SubCode, SubjectName, CreditHours) Taught (Subcode, InstructorID, Semester) Write SQL Queries for the following: i) Insert a record with values "IT232", "DBMS", 3 in the Subject table ii) Change the JobStatus of an Instructor with ID 521 to 'Permanent' iii) To add a column "salary" in instructor table. iv) To display the name of instructor with highest salary. v) To delete a column credit hours from subject table.
A worked answer is on its wayMeanwhile, read the Database Management System notes for this topic.
Discussion
Loading…
More Database Management System questions
Mention any one difference between schemas and instances.TU Board 20251Define attribute inheritance.TU Board 20251List out any two data types used in SQL.TU Board 20251What is the importance of creating role?TU Board 20251Define Transitive dependency.TU Board 20251Write SQL query to remove an attribute named 'email' from Employee table.TU Board 20251