Skip to content

Instantly share code, notes, and snippets.

View SoniaPG80's full-sized avatar

Sonia SoniaPG80

View GitHub Profile
@SoniaPG80
SoniaPG80 / gist:f19e35bf8724f454869d26dc6af35edc
Created October 26, 2023 13:16
SQL database for a university
CREATE SCHEMA university_schema;
CREATE TABLE students(
students_id int,
students_name nvarchar(50),
students_surname nvarchar(50),
students_birthdate date
);
CREATE TABLE courses(
courses_id int,