-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmuseo.js
51 lines (43 loc) · 1.44 KB
/
museo.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
const mysql = require ('mysql2/promise')
async function main (){
let connection;
try{
connection = await mysql.createConnection(
{
host:'localhost',
user: 'root',
password: '%M92WYMQ',
database: 'museo'
}
)
console.log('Conexión correcta');
museo1(connection);
museo2(connection);
}
catch(error) {
console.log(error);
await connection.end();
}
}
main();
async function museo1(connection){
let param = ['Préstamo']
let sql = `SELECT piezas.nombre, ubicacion.tipo_exposicion, ubicacion.lugar_exposicion, estado.fecha_devolucion,
dueño.nombre, dueño.apellido, dueño.email
FROM museo.piezas
JOIN dueño ON (piezas.dueño_id = dueño.dueño_id)
JOIN estado ON (piezas.pieza_id = estado.pieza_id)
JOIN ubicacion ON (piezas.pieza_id = ubicacion.pieza_id)
JOIN colecciones ON (piezas.coleccion_id = colecciones.coleccion_id)
WHERE estado.estado = ? `
let [result] = await connection.query(sql,param)
console.log(result);
}
async function museo2(connection){
let sql = `SELECT COUNT(*) AS piezas_museo, ubicacion.tipo_exposicion FROM museo.piezas
JOIN ubicacion ON (piezas.pieza_id = ubicacion.pieza_id)
group by ubicacion.tipo_exposicion
ORDER BY piezas_museo DESC `
let [result] = await connection.query(sql)
console.log(result);
}