- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudents.sql
More file actions
Latest commit
16 lines (13 loc) · 437 Bytes
/
Copy pathstudents.sql
File metadata and controls
16 lines (13 loc) · 437 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--
-- Table structure for table `students`
--
CREATETABLE `students` (
`student_id`int(10) UNSIGNED primary key auto_increment NOT NULL,
`student_name`varchar(50) DEFAULT NULL,
`student_email`varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `students`
--
INSERT INTO`students` (`student_id`, `student_name`, `student_email`) VALUES
(1, 'agurchand', 'agurchand@agurchand.com');