DBMS PR1
DBMS PR1
Create Tables:
NOTE:Insert 10 records
1. Write a query to select all students and display their full name (first name + last name),
and gender.
2. Write a query to select all courses and display the course name, course code, and the
number of credits.
1)Write a query to select all students and display their full name (first name + last name),
and gender.
FROM Students;
2. Write a query to select all courses and display the course name, course code, and the
number of credits.
SELECT course_name,course_code,credits
[email protected].
UPDATE Students SET email = '[email protected]'
WHERE student_id = 1;