-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.txt
36 lines (33 loc) · 2.9 KB
/
database.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Table for storing student details
create table student(name varchar(20),place varchar(20), age int, emailid varchar(25) primary key, spassword varchar(20));
// Table for storing mentor details
create table mentor(mname varchar(20),mplace varchar(20), mfield varchar(20), mexperience int, memailid varchar(25) primary key, mphoneno varchar(15), mpassword varchar(20));
insert into student values('Jaimon','Palakkad',20,'[email protected]','jai');
insert into student values('Navneeth','Kottayam',21,'[email protected]','mottu');
insert into student values('Swathi','Thiruvalla',20,'[email protected]','swathi');
insert into student values('Amrutha','Kannur',20,'[email protected]','ammaamma');
insert into student values('Geetha','Kozhikode',22,'[email protected]','geetha');
insert into student values('Neha','Thalaseri',22,'[email protected]','nidhi');
insert into student values('Priya','Palakkad',21,'[email protected]','priyav');
insert into student values('Anju','Kochi',22,'[email protected]','chinnu');
insert into student values('Tony','Kannur',22,'[email protected]','johnson');
insert into student values('Ashwathy','Alapuzha',21,'[email protected]','ashwa');
insert into student values('Rupitha','Palakkad',21,'[email protected]','rupz');
insert into student values('Pooja','Kollam',20,'[email protected]','puzhu');
insert into student values('Archana','Idukki',22,'[email protected]','achumol');
insert into student values('Epsitha','Bangalore',22,'[email protected]','eepsi');
insert into student values('Sreelakshmi','Kannur',22,'[email protected]','sreekutty');
insert into mentor values('Remya','Kollam','DBMS',10,'[email protected]',9446812035,'remyar');
insert into mentor values('Veena','Kayamkulam','Java',5,'[email protected]',9446345035,'veenag');
insert into mentor values('Jyothisha','Palakkad','Algorithm',10,'[email protected]',9520182035,'jyothi');
insert into mentor values('Chinmayi','Amritapuri','DBMS',2,'[email protected]',944763335,'chinz');
insert into mentor values('Remya K','Kollam','Java',4,'[email protected]',82814812035,'kremya');
insert into mentor values('Rajesh','Kottayam','DBMS',10,'[email protected]',949520515,'rajeshraji');
insert into mentor values('Sreelatha','Kannur','Maths',10,'[email protected]',89126812345,'sree');
insert into mentor values('Dhaneesh','Kannur','Maths',8,'[email protected]',9446819856,'dhaneesh');
insert into mentor values('Sarath','Kottayam','Security',10,'[email protected]',9875457095,'advisor');
insert into mentor values('Ruphiny','Kochi','Security',2,'[email protected]',948757047,'ruphi');
insert into mentor values('Geethu','Kochi','DBMS',1,'[email protected]',975494560,'geeth');
insert into mentor values('Disha','Palakkad','Security',10,'[email protected]',9764405696,'dish');
insert into mentor values('Indu','Kollam','DBMS',10,'[email protected]',9446883746,'blasts');
insert into mentor values('Prathibhamol','Kollam','Maths',6,'[email protected]',8434756538,'prathi');