Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
9 views
CREATE TABLE Users (
Uploaded by
Abhishek nair
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download now
Download
Save CREATE TABLE users ( For Later
Download
Save
Save CREATE TABLE users ( For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
9 views
CREATE TABLE Users (
Uploaded by
Abhishek nair
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download now
Download
Save CREATE TABLE users ( For Later
Carousel Previous
Carousel Next
Save
Save CREATE TABLE users ( For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 2
Search
Fullscreen
CREATE TABLE users (
user_Id INT PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(50) NOT NULL,
password VARCHAR(50) NOT NULL
);
CREATE TABLE trains (
train_id INT PRIMARY KEY AUTO_INCREMENT,
train_name VARCHAR(100),
source VARCHAR(50),
destination VARCHAR(50),
departure_time DATETIME,
arrival_time DATETIME
);
CREATE TABLE coaches (
coach_id INT PRIMARY KEY AUTO_INCREMENT,
train_id INT,
coach_type VARCHAR(20),
available_seats INT,
FOREIGN KEY (train_id) REFERENCES trains(train_id)
);
CREATE TABLE reservations (
reservation_id INT PRIMARY KEY AUTO_INCREMENT,
user_name VARCHAR(50),
passenger_name VARCHAR(50),
age INT,
gender VARCHAR(10),
train_id INT,
coach_type VARCHAR(20),
seat_number INT,
departure_city VARCHAR(50),
arrival_city VARCHAR(50),
status VARCHAR(20),
meal_option VARCHAR(20),
ticket_price DECIMAL(10, 2),
FOREIGN KEY (train_id) REFERENCES trains(train_id)
);
INSERT INTO users (username, password) VALUES ('Admin', 'Admin_6789'), ('Admin2',
'Admin_1234');
INSERT INTO trains (train_name, source, destination, departure_time, arrival_time)
VALUES
(110256, 'Rajdhani Express', 'Ankleshwar', 'Delhi', '2025-04-20 06:00:00', '2025-
04-22 15:00:00'),
(652319, 'Satabdhi Express', 'Ankleshwar', 'Delhi', '2025-04-20 09:00:00', '2025-
04-22 18:00:00'),
(259032, 'Vandehbharat', 'Kochi', 'Shimla', '2025-05-01 08:00:00', '2024-05-4
17:30:00'),
(782195, 'Malabar Express', 'Kochi', 'Shimla', '2025-05-01 04:00:00', '2024-05-4
13:30:00'),
(378149, 'Duronto Express', 'Lucknow', 'Chennai ', '2025-01-20 10:00:00', '2025-01-
22 19:00:00'),
(105693, 'Rajdhani Express', 'Lucknow', 'Chennai ', '2025-01-20 14:00:00', '2025-
01-22 23:00:00'),
(411905, 'Omkar Express', 'jodhpur ', 'Bangalore', '2025-02-27 05:30:00', '2025-03-
02 09:30:00');
(349907, 'KSR bengluru double Decker', 'jodhpur ', 'Bangalore', '2025-02-27
03:30:00', '2025-03-02 07:30:00');
INSERT INTO coaches (train_id, coach_type, available_seats) VALUES
(110256, 'Sleeper', 150, 50),
(110256, 'AC', 100, 20),
(652319, 'Sleeper', 162, 34),
(652319, 'AC', 50, 36);
(259032, 'Sleeper', 180, 70),
(259032, 'AC', 120, 30),
(782195, 'Sleeper', 130, 60),
(782195, 'AC', 100, 40);
(378149, 'Sleeper', 200, 90),
(378149, 'AC', 150, 50),
(105693, 'Sleeper', 190, 70),
(105693, 'AC', 130, 60);
(411905, 'Sleeper', 180, 60),
(411905, 'AC', 130, 40),
(349907, 'Sleeper', 120, 40),
(349907, 'AC', 110, 35);
You might also like
Sqltext
PDF
No ratings yet
Sqltext
1 page
CREATE DATABASE Railway - Reservation
PDF
No ratings yet
CREATE DATABASE Railway - Reservation
2 pages
Railway CODE
PDF
No ratings yet
Railway CODE
7 pages
Create The Railway Database
PDF
No ratings yet
Create The Railway Database
3 pages
RailwayManagementSystem
PDF
No ratings yet
RailwayManagementSystem
3 pages
Name - Sanjay Nithin S Reg No - 20BIT0150
PDF
No ratings yet
Name - Sanjay Nithin S Reg No - 20BIT0150
12 pages
Journey with Train
PDF
No ratings yet
Journey with Train
8 pages
DBMS Project
PDF
No ratings yet
DBMS Project
26 pages
Table For All Database
PDF
No ratings yet
Table For All Database
2 pages
Course Title:: Data Base Management System (DBMS) CSDB2311-S23-BSCS-F21
PDF
No ratings yet
Course Title:: Data Base Management System (DBMS) CSDB2311-S23-BSCS-F21
14 pages
19bit0102 Lab Da1 PDF
PDF
No ratings yet
19bit0102 Lab Da1 PDF
17 pages
Project File
PDF
No ratings yet
Project File
4 pages
SQL Assignment 3
PDF
100% (2)
SQL Assignment 3
4 pages
TrainMgmtERD.drawio (2)
PDF
No ratings yet
TrainMgmtERD.drawio (2)
1 page
TrainMgmtERD.drawio
PDF
No ratings yet
TrainMgmtERD.drawio
1 page
SQL Queries Railway Information
PDF
No ratings yet
SQL Queries Railway Information
6 pages
dbms_assignment2_231CS249
PDF
No ratings yet
dbms_assignment2_231CS249
13 pages
database_schema_new_page_v2
PDF
No ratings yet
database_schema_new_page_v2
13 pages
Creation and Insertion of Hotel Management System
PDF
No ratings yet
Creation and Insertion of Hotel Management System
25 pages
Source Code
PDF
No ratings yet
Source Code
3 pages
Cse 2004: Databse Manegment Systems Lab Digital Assignment 1
PDF
No ratings yet
Cse 2004: Databse Manegment Systems Lab Digital Assignment 1
17 pages
18bce0009 Dbms Da
PDF
No ratings yet
18bce0009 Dbms Da
8 pages
Database Management System Lab Assesment-2: 3. Constraints and Alter Commands
PDF
No ratings yet
Database Management System Lab Assesment-2: 3. Constraints and Alter Commands
8 pages
DBMS Lab Assessment Cycle Sheet (Ques 1-4) : Sanskar Gupta 17BIT0201
PDF
No ratings yet
DBMS Lab Assessment Cycle Sheet (Ques 1-4) : Sanskar Gupta 17BIT0201
8 pages
Railway_Reservation_System
PDF
No ratings yet
Railway_Reservation_System
6 pages
Creation of Database and Related Tables Sequence Order
PDF
No ratings yet
Creation of Database and Related Tables Sequence Order
14 pages
Question For Practice Oracle (11g) With Answers
PDF
100% (4)
Question For Practice Oracle (11g) With Answers
32 pages
ERD.drawio
PDF
No ratings yet
ERD.drawio
4 pages
Railway Management System
PDF
100% (1)
Railway Management System
30 pages
RDBMS
PDF
No ratings yet
RDBMS
8 pages
Railway
PDF
0% (1)
Railway
6 pages
Dəmiryol idarəetmə sistemi
PDF
No ratings yet
Dəmiryol idarəetmə sistemi
4 pages
Ite1003 Database-Management-Systems Eth 1.0 37 Ite1003
PDF
No ratings yet
Ite1003 Database-Management-Systems Eth 1.0 37 Ite1003
6 pages
SQL Project
PDF
No ratings yet
SQL Project
10 pages
Abhishek
PDF
No ratings yet
Abhishek
19 pages
Dbms Lab - Manual
PDF
No ratings yet
Dbms Lab - Manual
52 pages
Conceptual Design
PDF
No ratings yet
Conceptual Design
8 pages
Railway Managment System
PDF
No ratings yet
Railway Managment System
11 pages
db
PDF
No ratings yet
db
3 pages
Assignmnet 2
PDF
No ratings yet
Assignmnet 2
5 pages
ERD.drawio
PDF
No ratings yet
ERD.drawio
2 pages
Advance Database Management System
PDF
No ratings yet
Advance Database Management System
14 pages
Railway Reservation
PDF
No ratings yet
Railway Reservation
18 pages
Create Bus Ticket Booking Database
PDF
No ratings yet
Create Bus Ticket Booking Database
7 pages
Untitled
PDF
No ratings yet
Untitled
61 pages
Assgm-01-DBMS_Lab
PDF
No ratings yet
Assgm-01-DBMS_Lab
4 pages
Database Project Proposal Final
PDF
No ratings yet
Database Project Proposal Final
4 pages
Faculty of Technology and Engineering: U & P U. Patel Department of Computer Engineering
PDF
No ratings yet
Faculty of Technology and Engineering: U & P U. Patel Department of Computer Engineering
27 pages
Dma - Assignmnet 2 - 241114 - 092531
PDF
No ratings yet
Dma - Assignmnet 2 - 241114 - 092531
8 pages
Ite1003 Database-Management-Systems Eth 1.0 37 Ite1003 21
PDF
0% (1)
Ite1003 Database-Management-Systems Eth 1.0 37 Ite1003 21
5 pages
Assignment 1
PDF
No ratings yet
Assignment 1
11 pages
SQL Tabels
PDF
No ratings yet
SQL Tabels
5 pages
Solution Set 1
PDF
No ratings yet
Solution Set 1
28 pages
Database Management Systems Lab Assessment-3: Name: Atharv Kugaji REG NO:19BIT0347
PDF
100% (1)
Database Management Systems Lab Assessment-3: Name: Atharv Kugaji REG NO:19BIT0347
15 pages
Database Management System
PDF
100% (1)
Database Management System
4 pages
Railway Management System_compressed
PDF
No ratings yet
Railway Management System_compressed
34 pages
19CS3002-Database Management Systems Laboratory: Model Practical Examination
PDF
No ratings yet
19CS3002-Database Management Systems Laboratory: Model Practical Examination
18 pages
Fallsem2019-20 Ite1003 Ela Vl2019201002908 Reference Material Challenging Lab Cyclesheet
PDF
No ratings yet
Fallsem2019-20 Ite1003 Ela Vl2019201002908 Reference Material Challenging Lab Cyclesheet
3 pages