-
Notifications
You must be signed in to change notification settings - Fork 526
/
Copy pathexercise_1.js
76 lines (62 loc) · 2.13 KB
/
exercise_1.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
const mysql = require('mysql');
const connection = mysql.createConnection({
host: 'localhost',
user: 'hyfuser',
password: 'hyfpassword',
multipleStatements: true
});
/*Connect to SQL server*/
connection.connect(err => {
if (err) {
return console.error('Connection error: ' + err.stack);
}
console.log('Connected!');
});
/*SQL queries*/
const createDatabaseAndTables =
`DROP DATABASE IF EXISTS meetup;
CREATE DATABASE meetup;
USE meetup;
CREATE TABLE Invitee (
invitee_no INT AUTO_INCREMENT PRIMARY KEY,
invitee_name VARCHAR(100),
invited_by VARCHAR(100)
);
CREATE TABLE Room (
room_no INT AUTO_INCREMENT PRIMARY KEY,
room_name VARCHAR(50),
floor_number INT
);
CREATE TABLE Meeting (
meeting_no INT AUTO_INCREMENT PRIMARY KEY,
meeting_title VARCHAR(100),
starting_time DATETIME,
ending_time DATETIME,
room_no INT,
FOREIGN KEY (room_no) REFERENCES Room(room_no)
);
INSERT INTO Room (room_name, floor_number) VALUES
('Paris', 1),
('New York', 2),
('Tokyo', 3),
('London', 4),
('Berlin', 5);
INSERT INTO Invitee (invitee_name, invited_by) VALUES
('Victor Hugo', 'Alexandre Dumas'),
('Mark Twain', 'Henry James'),
('Haruki Murakami', 'Kenzaburo Oe'),
('Charles Dickens', 'Wilkie Collins'),
('Albert Einstein', 'Niels Bohr');
INSERT INTO Meeting (meeting_title, starting_time, ending_time, room_no) VALUES
('Literary Classics Discussion', '2024-08-01 09:00:00', '2024-08-01 10:00:00', 1),
('American Literature Seminar', '2024-08-02 11:00:00', '2024-08-02 12:00:00', 2),
('Japanese Fiction Workshop', '2024-08-03 14:00:00', '2024-08-03 15:00:00', 3),
('Victorian Literature Symposium', '2024-08-04 16:00:00', '2024-08-04 17:00:00', 4),
('Scientific Innovations Forum', '2024-08-05 13:00:00', '2024-08-05 14:00:00', 5);`;
// Execute the queries
connection.query(createDatabaseAndTables, (error, results, fields) => {
if (error) throw error;
console.log('Database and tables created, and data inserted');
});
// Close the connection
connection.end();