0% found this document useful (0 votes)
4 views

- PhpMyAdmin SQL Dump

The document is an SQL dump generated by phpMyAdmin for a database named 'enrollment', containing tables for courses, departments, enrollments, and professors. It includes the structure and data for each table, detailing course names and credits, department names, student enrollments in courses, and professor information. The dump was created on October 14, 2024, using MariaDB and PHP.

Uploaded by

janromarsantero
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

- PhpMyAdmin SQL Dump

The document is an SQL dump generated by phpMyAdmin for a database named 'enrollment', containing tables for courses, departments, enrollments, and professors. It includes the structure and data for each table, detailing course names and credits, department names, student enrollments in courses, and professor information. The dump was created on October 14, 2024, using MariaDB and PHP.

Uploaded by

janromarsantero
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

- phpMyAdmin SQL Dump

-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Oct 14, 2024 at 11:05 AM
-- Server version: 10.4.28-MariaDB
-- PHP Version: 8.1.17

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";


START TRANSACTION;
SET time_zone = "+00:00";

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;


/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `enrollment`
--

-- --------------------------------------------------------

--
-- Table structure for table `courses`
--

CREATE TABLE `courses` (


`course_id` int(3) NOT NULL,
`course_name` varchar(17) DEFAULT NULL,
`credits` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `courses`
--

INSERT INTO `courses` (`course_id`, `course_name`, `credits`) VALUES


(1, 'Digital Circuits', 3),
(2, 'Organic Chemistry', 4),
(3, 'Data Structures', 4),
(4, 'Algorithms', 3),
(5, 'Organic Chemistry', 2),
(6, 'Algorithms', 2),
(7, 'Calculus I', 3),
(8, 'Algorithms', 3),
(9, 'Organic Chemistry', 4),
(10, 'Operating Systems', 4),
(11, 'Calculus I', 3),
(12, 'Digital Circuits', 4),
(13, 'Marketing 101', 4),
(14, 'Digital Circuits', 4),
(15, 'Database Systems', 2),
(16, 'Data Structures', 4),
(17, 'Physics I', 4),
(18, 'Digital Circuits', 2),
(19, 'Physics I', 4),
(20, 'Algorithms', 4),
(21, 'Human Anatomy', 4),
(22, 'Human Anatomy', 3),
(23, 'Organic Chemistry', 2),
(24, 'Marketing 101', 2),
(25, 'Calculus I', 3),
(26, 'Operating Systems', 3),
(27, 'Database Systems', 3),
(28, 'Digital Circuits', 4),
(29, 'Calculus I', 3),
(30, 'Marketing 101', 4),
(31, 'Calculus I', 2),
(32, 'Physics I', 3),
(33, 'Operating Systems', 3),
(34, 'Operating Systems', 3),
(35, 'Digital Circuits', 2),
(36, 'Data Structures', 4),
(37, 'Digital Circuits', 4),
(38, 'Organic Chemistry', 3),
(39, 'Physics I', 4),
(40, 'Calculus I', 3),
(41, 'Human Anatomy', 2),
(42, 'Data Structures', 4),
(43, 'Organic Chemistry', 3),
(44, 'Calculus I', 3),
(45, 'Marketing 101', 3),
(46, 'Marketing 101', 3),
(47, 'Operating Systems', 3),
(48, 'Organic Chemistry', 4),
(49, 'Organic Chemistry', 3),
(50, 'Organic Chemistry', 3),
(51, 'Organic Chemistry', 2),
(52, 'Algorithms', 3),
(53, 'Physics I', 2),
(54, 'Data Structures', 2),
(55, 'Calculus I', 3),
(56, 'Human Anatomy', 2),
(57, 'Human Anatomy', 3),
(58, 'Human Anatomy', 4),
(59, 'Calculus I', 2),
(60, 'Database Systems', 2),
(61, 'Organic Chemistry', 4),
(62, 'Database Systems', 4),
(63, 'Marketing 101', 3),
(64, 'Physics I', 3),
(65, 'Data Structures', 4),
(66, 'Data Structures', 2),
(67, 'Calculus I', 3),
(68, 'Database Systems', 4),
(69, 'Operating Systems', 3),
(70, 'Human Anatomy', 3),
(71, 'Database Systems', 4),
(72, 'Physics I', 3),
(73, 'Data Structures', 3),
(74, 'Marketing 101', 3),
(75, 'Data Structures', 4),
(76, 'Operating Systems', 2),
(77, 'Physics I', 4),
(78, 'Digital Circuits', 3),
(79, 'Calculus I', 4),
(80, 'Data Structures', 3),
(81, 'Digital Circuits', 2),
(82, 'Organic Chemistry', 2),
(83, 'Algorithms', 2),
(84, 'Data Structures', 2),
(85, 'Calculus I', 3),
(86, 'Database Systems', 2),
(87, 'Calculus I', 3),
(88, 'Organic Chemistry', 2),
(89, 'Physics I', 3),
(90, 'Physics I', 2),
(91, 'Calculus I', 3),
(92, 'Human Anatomy', 2),
(93, 'Human Anatomy', 3),
(94, 'Marketing 101', 4),
(95, 'Algorithms', 4),
(96, 'Physics I', 4),
(97, 'Calculus I', 4),
(98, 'Digital Circuits', 4),
(99, 'Calculus I', 3),
(100, 'Algorithms', 2);

-- --------------------------------------------------------

--
-- Table structure for table `departments`
--

CREATE TABLE `departments` (


`department_id` int(3) NOT NULL,
`department_name` varchar(23) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `departments`
--

INSERT INTO `departments` (`department_id`, `department_name`) VALUES


(1, 'Chemistry'),
(2, 'Marketing'),
(3, 'Mathematics'),
(4, 'Physics'),
(5, 'Biology'),
(6, 'Mechanical Engineering'),
(7, 'Biology'),
(8, 'Business Administration'),
(9, 'Information Technology'),
(10, 'Electrical Engineering'),
(11, 'Biology'),
(12, 'Business Administration'),
(13, 'Information Technology'),
(14, 'Business Administration'),
(15, 'Biology'),
(16, 'Electrical Engineering'),
(17, 'Information Technology'),
(18, 'Mechanical Engineering'),
(19, 'Business Administration'),
(20, 'Biology'),
(21, 'Mechanical Engineering'),
(22, 'Marketing'),
(23, 'Mechanical Engineering'),
(24, 'Mathematics'),
(25, 'Marketing'),
(26, 'Marketing'),
(27, 'Mathematics'),
(28, 'Physics'),
(29, 'Electrical Engineering'),
(30, 'Mathematics'),
(31, 'Electrical Engineering'),
(32, 'Computer Science'),
(33, 'Business Administration'),
(34, 'Information Technology'),
(35, 'Marketing'),
(36, 'Chemistry'),
(37, 'Chemistry'),
(38, 'Marketing'),
(39, 'Mathematics'),
(40, 'Chemistry'),
(41, 'Information Technology'),
(42, 'Physics'),
(43, 'Physics'),
(44, 'Biology'),
(45, 'Computer Science'),
(46, 'Marketing'),
(47, 'Biology'),
(48, 'Mathematics'),
(49, 'Mechanical Engineering'),
(50, 'Biology'),
(51, 'Electrical Engineering'),
(52, 'Chemistry'),
(53, 'Mechanical Engineering'),
(54, 'Information Technology'),
(55, 'Business Administration'),
(56, 'Physics'),
(57, 'Computer Science'),
(58, 'Business Administration'),
(59, 'Business Administration'),
(60, 'Marketing'),
(61, 'Mathematics'),
(62, 'Chemistry'),
(63, 'Electrical Engineering'),
(64, 'Marketing'),
(65, 'Mechanical Engineering'),
(66, 'Information Technology'),
(67, 'Mechanical Engineering'),
(68, 'Biology'),
(69, 'Information Technology'),
(70, 'Physics'),
(71, 'Physics'),
(72, 'Chemistry'),
(73, 'Marketing'),
(74, 'Biology'),
(75, 'Mechanical Engineering'),
(76, 'Mechanical Engineering'),
(77, 'Information Technology'),
(78, 'Chemistry'),
(79, 'Biology'),
(80, 'Biology'),
(81, 'Chemistry'),
(82, 'Business Administration'),
(83, 'Computer Science'),
(84, 'Physics'),
(85, 'Information Technology'),
(86, 'Marketing'),
(87, 'Computer Science'),
(88, 'Biology'),
(89, 'Biology'),
(90, 'Mathematics'),
(91, 'Biology'),
(92, 'Business Administration'),
(93, 'Computer Science'),
(94, 'Biology'),
(95, 'Physics'),
(96, 'Chemistry'),
(97, 'Mechanical Engineering'),
(98, 'Information Technology'),
(99, 'Electrical Engineering'),
(100, 'Marketing');

-- --------------------------------------------------------

--
-- Table structure for table `enrollments`
--

CREATE TABLE `enrollments` (


`enrollment_id` int(3) NOT NULL,
`student_id` int(2) DEFAULT NULL,
`course_id` int(3) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `enrollments`
--

INSERT INTO `enrollments` (`enrollment_id`, `student_id`, `course_id`) VALUES


(1, 11, 79),
(2, 1, 81),
(3, 81, 52),
(4, 80, 13),
(5, 70, 100),
(6, 59, 23),
(7, 29, 13),
(8, 65, 79),
(9, 1, 46),
(10, 8, 45),
(11, 92, 63),
(12, 39, 49),
(13, 81, 6),
(14, 46, 81),
(15, 71, 3),
(16, 33, 16),
(17, 54, 52),
(18, 4, 44),
(19, 35, 60),
(20, 13, 40),
(21, 46, 70),
(22, 82, 40),
(23, 40, 53),
(24, 50, 17),
(25, 60, 7),
(26, 91, 27),
(27, 48, 28),
(28, 18, 41),
(29, 98, 87),
(30, 83, 62),
(31, 19, 77),
(32, 89, 86),
(33, 50, 12),
(34, 31, 21),
(35, 47, 98),
(36, 35, 33),
(37, 87, 15),
(38, 60, 18),
(39, 21, 70),
(40, 81, 77),
(41, 64, 61),
(42, 37, 88),
(43, 76, 44),
(44, 14, 72),
(45, 96, 33),
(46, 21, 46),
(47, 11, 50),
(48, 81, 56),
(49, 99, 60),
(50, 4, 40),
(51, 46, 28),
(52, 65, 54),
(53, 45, 48),
(54, 56, 90),
(55, 24, 61),
(56, 62, 98),
(57, 23, 45),
(58, 34, 31),
(59, 87, 10),
(60, 23, 23),
(61, 34, 61),
(62, 70, 86),
(63, 50, 81),
(64, 43, 75),
(65, 84, 79),
(66, 25, 60),
(67, 7, 17),
(68, 88, 14),
(69, 74, 30),
(70, 77, 26),
(71, 6, 52),
(72, 32, 89),
(73, 20, 34),
(74, 41, 74),
(75, 11, 65),
(76, 10, 35),
(77, 58, 67),
(78, 30, 17),
(79, 24, 87),
(80, 7, 18),
(81, 89, 78),
(82, 81, 62),
(83, 3, 54),
(84, 38, 5),
(85, 43, 36),
(86, 17, 56),
(87, 58, 24),
(88, 88, 9),
(89, 58, 5),
(90, 95, 91),
(91, 73, 36),
(92, 37, 8),
(93, 74, 77),
(94, 65, 24),
(95, 95, 82),
(96, 93, 40),
(97, 40, 58),
(98, 79, 96),
(99, 43, 1),
(100, 58, 46);

-- --------------------------------------------------------

--
-- Table structure for table `professors`
--

CREATE TABLE `professors` (


`professor_id` int(3) NOT NULL,
`first_name` varchar(7) DEFAULT NULL,
`last_name` varchar(8) DEFAULT NULL,
`department_id` int(3) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `professors`
--

INSERT INTO `professors` (`professor_id`, `first_name`, `last_name`,


`department_id`) VALUES
(1, 'Anna', 'Jones', 56),
(2, 'Michael', 'Wilson', 42),
(3, 'Jane', 'Moore', 89),
(4, 'David', 'Miller', 72),
(5, 'John', 'Brown', 53),
(6, 'Anna', 'Wilson', 42),
(7, 'Michael', 'Taylor', 100),
(8, 'Robert', 'Davis', 62),
(9, 'Sarah', 'Johnson', 14),
(10, 'Michael', 'Moore', 30),
(11, 'David', 'Jones', 63),
(12, 'John', 'Johnson', 34),
(13, 'Robert', 'Williams', 97),
(14, 'David', 'Miller', 8),
(15, 'Emily', 'Wilson', 18),
(16, 'John', 'Miller', 93),
(17, 'James', 'Taylor', 22),
(18, 'Robert', 'Brown', 32),
(19, 'Anna', 'Taylor', 36),
(20, 'James', 'Davis', 64),
(21, 'James', 'Wilson', 74),
(22, 'John', 'Davis', 50),
(23, 'David', 'Brown', 32),
(24, 'David', 'Johnson', 88),
(25, 'Anna', 'Smith', 93),
(26, 'Robert', 'Miller', 22),
(27, 'Laura', 'Wilson', 63),
(28, 'John', 'Brown', 38),
(29, 'Emily', 'Brown', 47),
(30, 'Sarah', 'Taylor', 58),
(31, 'Anna', 'Wilson', 51),
(32, 'Emily', 'Smith', 21),
(33, 'John', 'Wilson', 75),
(34, 'Emily', 'Johnson', 21),
(35, 'David', 'Moore', 94),
(36, 'Emily', 'Jones', 77),
(37, 'Anna', 'Johnson', 97),
(38, 'Michael', 'Jones', 89),
(39, 'James', 'Brown', 4),
(40, 'Emily', 'Brown', 80),
(41, 'Emily', 'Johnson', 7),
(42, 'Robert', 'Brown', 19),
(43, 'David', 'Davis', 32),
(44, 'Laura', 'Moore', 86),
(45, 'David', 'Moore', 53),
(46, 'Robert', 'Johnson', 36),
(47, 'David', 'Brown', 6),
(48, 'Robert', 'Taylor', 64),
(49, 'Emily', 'Wilson', 53),
(50, 'Anna', 'Brown', 50),
(51, 'Emily', 'Williams', 67),
(52, 'Emily', 'Johnson', 93),
(53, 'Anna', 'Davis', 100),
(54, 'David', 'Jones', 10),
(55, 'Laura', 'Moore', 97),
(56, 'John', 'Smith', 83),
(57, 'Jane', 'Brown', 36),
(58, 'Emily', 'Davis', 7),
(59, 'John', 'Williams', 36),
(60, 'David', 'Miller', 66),
(61, 'Michael', 'Moore', 46),
(62, 'Michael', 'Brown', 68),
(63, 'Michael', 'Johnson', 92),
(64, 'Jane', 'Wilson', 1),
(65, 'Michael', 'Smith', 42),
(66, 'Laura', 'Miller', 30),
(67, 'Laura', 'Taylor', 12),
(68, 'Jane', 'Brown', 91),
(69, 'Laura', 'Wilson', 89),
(70, 'Sarah', 'Davis', 78),
(71, 'John', 'Johnson', 9),
(72, 'James', 'Williams', 37),
(73, 'James', 'Brown', 29),
(74, 'Robert', 'Wilson', 47),
(75, 'Michael', 'Johnson', 6),
(76, 'David', 'Davis', 6),
(77, 'James', 'Wilson', 94),
(78, 'Robert', 'Davis', 56),
(79, 'James', 'Miller', 37),
(80, 'Anna', 'Wilson', 48),
(81, 'Robert', 'Miller', 31),
(82, 'Jane', 'Williams', 86),
(83, 'John', 'Davis', 29),
(84, 'Sarah', 'Williams', 82),
(85, 'Anna', 'Williams', 51),
(86, 'Laura', 'Johnson', 73),
(87, 'Robert', 'Jones', 95),
(88, 'Robert', 'Smith', 13),
(89, 'Michael', 'Jones', 13),
(90, 'Robert', 'Davis', 86),
(91, 'Jane', 'Williams', 95),
(92, 'Robert', 'Brown', 10),
(93, 'James', 'Johnson', 93),
(94, 'Sarah', 'Taylor', 81),
(95, 'Jane', 'Brown', 41),
(96, 'John', 'Williams', 32),
(97, 'Sarah', 'Johnson', 40),
(98, 'Robert', 'Moore', 36),
(99, 'Michael', 'Wilson', 90),
(100, 'James', 'Johnson', 16);

-- --------------------------------------------------------

--
-- Table structure for table `students`
--

CREATE TABLE `students` (


`student_id` int(3) NOT NULL,
`first_name` varchar(8) DEFAULT NULL,
`last_name` varchar(9) DEFAULT NULL,
`age` int(2) DEFAULT NULL,
`major` varchar(23) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

--
-- Dumping data for table `students`
--

INSERT INTO `students` (`student_id`, `first_name`, `last_name`, `age`, `major`)


VALUES
(1, 'Emma', 'Martinez', 24, 'Biology'),
(2, 'Liam', 'Hernandez', 19, 'Biology'),
(3, 'Elijah', 'Sanchez', 20, 'Information Technology'),
(4, 'James', 'Rodriguez', 24, 'Computer Science'),
(5, 'Ava', 'Hernandez', 22, 'Information Technology'),
(6, 'Olivia', 'Lopez', 21, 'Information Technology'),
(7, 'Noah', 'Martinez', 24, 'Marketing'),
(8, 'Elijah', 'Perez', 24, 'Biology'),
(9, 'Ava', 'Rodriguez', 21, 'Electrical Engineering'),
(10, 'Sophia', 'Hernandez', 19, 'Biology'),
(11, 'Oliver', 'Torres', 21, 'Computer Science'),
(12, 'James', 'Torres', 23, 'Information Technology'),
(13, 'Liam', 'Rodriguez', 22, 'Marketing'),
(14, 'James', 'Garcia', 22, 'Information Technology'),
(15, 'Sophia', 'Gonzalez', 20, 'Business Administration'),
(16, 'Elijah', 'Lopez', 20, 'Electrical Engineering'),
(17, 'Sophia', 'Sanchez', 19, 'Electrical Engineering'),
(18, 'James', 'Sanchez', 24, 'Electrical Engineering'),
(19, 'Liam', 'Garcia', 18, 'Computer Science'),
(20, 'Sophia', 'Perez', 20, 'Information Technology'),
(21, 'Noah', 'Gonzalez', 18, 'Information Technology'),
(22, 'Liam', 'Sanchez', 21, 'Business Administration'),
(23, 'Emma', 'Ramirez', 21, 'Marketing'),
(24, 'Elijah', 'Perez', 20, 'Business Administration'),
(25, 'Elijah', 'Lopez', 22, 'Electrical Engineering'),
(26, 'Isabella', 'Hernandez', 24, 'Computer Science'),
(27, 'Liam', 'Torres', 22, 'Marketing'),
(28, 'Noah', 'Garcia', 19, 'Electrical Engineering'),
(29, 'Noah', 'Garcia', 19, 'Biology'),
(30, 'Sophia', 'Hernandez', 24, 'Computer Science'),
(31, 'Olivia', 'Gonzalez', 24, 'Biology'),
(32, 'Oliver', 'Garcia', 21, 'Biology'),
(33, 'Isabella', 'Hernandez', 23, 'Marketing'),
(34, 'Isabella', 'Sanchez', 24, 'Computer Science'),
(35, 'Ava', 'Perez', 21, 'Computer Science'),
(36, 'Noah', 'Garcia', 20, 'Information Technology'),
(37, 'Emma', 'Rodriguez', 22, 'Information Technology'),
(38, 'Isabella', 'Ramirez', 20, 'Biology'),
(39, 'Emma', 'Martinez', 18, 'Biology'),
(40, 'Elijah', 'Gonzalez', 19, 'Information Technology'),
(41, 'Isabella', 'Lopez', 20, 'Business Administration'),
(42, 'Ava', 'Perez', 22, 'Computer Science'),
(43, 'Elijah', 'Ramirez', 19, 'Computer Science'),
(44, 'Ava', 'Garcia', 23, 'Biology'),
(45, 'Noah', 'Hernandez', 22, 'Electrical Engineering'),
(46, 'Emma', 'Lopez', 22, 'Information Technology'),
(47, 'James', 'Gonzalez', 20, 'Electrical Engineering'),
(48, 'Isabella', 'Perez', 18, 'Business Administration'),
(49, 'Liam', 'Martinez', 23, 'Biology'),
(50, 'Oliver', 'Garcia', 18, 'Business Administration'),
(51, 'James', 'Lopez', 23, 'Business Administration'),
(52, 'James', 'Garcia', 19, 'Biology'),
(53, 'James', 'Lopez', 21, 'Biology'),
(54, 'Noah', 'Perez', 22, 'Marketing'),
(55, 'Oliver', 'Ramirez', 23, 'Electrical Engineering'),
(56, 'Oliver', 'Rodriguez', 23, 'Computer Science'),
(57, 'Noah', 'Gonzalez', 18, 'Business Administration'),
(58, 'James', 'Rodriguez', 21, 'Marketing'),
(59, 'Elijah', 'Hernandez', 22, 'Computer Science'),
(60, 'Noah', 'Hernandez', 23, 'Business Administration'),
(61, 'Sophia', 'Hernandez', 20, 'Biology'),
(62, 'Ava', 'Perez', 23, 'Information Technology'),
(63, 'Isabella', 'Perez', 24, 'Business Administration'),
(64, 'James', 'Rodriguez', 18, 'Computer Science'),
(65, 'Liam', 'Lopez', 21, 'Marketing'),
(66, 'Noah', 'Lopez', 23, 'Computer Science'),
(67, 'Isabella', 'Gonzalez', 21, 'Information Technology'),
(68, 'Olivia', 'Garcia', 24, 'Information Technology'),
(69, 'Emma', 'Ramirez', 24, 'Biology'),
(70, 'Olivia', 'Perez', 22, 'Biology'),
(71, 'Isabella', 'Sanchez', 21, 'Information Technology'),
(72, 'Sophia', 'Martinez', 21, 'Computer Science'),
(73, 'Isabella', 'Perez', 20, 'Computer Science'),
(74, 'Ava', 'Lopez', 24, 'Business Administration'),
(75, 'James', 'Perez', 23, 'Biology'),
(76, 'Noah', 'Sanchez', 20, 'Electrical Engineering'),
(77, 'Olivia', 'Hernandez', 24, 'Marketing'),
(78, 'Ava', 'Lopez', 19, 'Marketing'),
(79, 'Oliver', 'Sanchez', 18, 'Biology'),
(80, 'Elijah', 'Sanchez', 21, 'Business Administration'),
(81, 'Noah', 'Gonzalez', 19, 'Business Administration'),
(82, 'Liam', 'Sanchez', 24, 'Business Administration'),
(83, 'Oliver', 'Martinez', 24, 'Marketing'),
(84, 'Liam', 'Ramirez', 20, 'Electrical Engineering'),
(85, 'Sophia', 'Ramirez', 19, 'Biology'),
(86, 'Oliver', 'Ramirez', 19, 'Marketing'),
(87, 'Liam', 'Rodriguez', 19, 'Marketing'),
(88, 'Liam', 'Perez', 18, 'Computer Science'),
(89, 'Noah', 'Martinez', 23, 'Information Technology'),
(90, 'Noah', 'Martinez', 23, 'Information Technology'),
(91, 'Elijah', 'Gonzalez', 22, 'Marketing'),
(92, 'Olivia', 'Perez', 24, 'Information Technology'),
(93, 'Isabella', 'Perez', 22, 'Marketing'),
(94, 'Isabella', 'Perez', 23, 'Business Administration'),
(95, 'Oliver', 'Martinez', 22, 'Computer Science'),
(96, 'Noah', 'Ramirez', 23, 'Information Technology'),
(97, 'Ava', 'Gonzalez', 24, 'Electrical Engineering'),
(98, 'Liam', 'Hernandez', 24, 'Business Administration'),
(99, 'Noah', 'Martinez', 22, 'Computer Science'),
(100, 'Sophia', 'Garcia', 22, 'Biology');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `courses`
--
ALTER TABLE `courses`
ADD PRIMARY KEY (`course_id`);

--
-- Indexes for table `departments`
--
ALTER TABLE `departments`
ADD PRIMARY KEY (`department_id`);

--
-- Indexes for table `enrollments`
--
ALTER TABLE `enrollments`
ADD PRIMARY KEY (`enrollment_id`);

--
-- Indexes for table `professors`
--
ALTER TABLE `professors`
ADD PRIMARY KEY (`professor_id`);

--
-- Indexes for table `students`
--
ALTER TABLE `students`
ADD PRIMARY KEY (`student_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `courses`
--
ALTER TABLE `courses`
MODIFY `course_id` int(3) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;

--
-- AUTO_INCREMENT for table `departments`
--
ALTER TABLE `departments`
MODIFY `department_id` int(3) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;

--
-- AUTO_INCREMENT for table `enrollments`
--
ALTER TABLE `enrollments`
MODIFY `enrollment_id` int(3) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;

--
-- AUTO_INCREMENT for table `professors`
--
ALTER TABLE `professors`
MODIFY `professor_id` int(3) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;

--
-- AUTO_INCREMENT for table `students`
--
ALTER TABLE `students`
MODIFY `student_id` int(3) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;


/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

You might also like