-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathqueries.js
73 lines (73 loc) · 1.51 KB
/
queries.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
module.exports = {
GET_ALL_LIBROS: `
SELECT
id,
nome as nombre,
abreviacao as abreviatura,
qnt_capitulos as totalCapitulos
FROM
livros`,
GET_LIBROS_BY_ABREVIATURA: `
SELECT
id,
nome as nombre,
abreviacao as abreviatura,
qnt_capitulos as totalCapitulos
FROM
livros
WHERE
upper(abreviacao) = $abreviatura
LIMIT 1`,
GET_VERSICULO_BY_ABREVIATURA: `
SELECT
a.numero_capitulo as capitulo,
a.numero_versiculo as versiculo,
a.texto as texto
FROM
versiculos_fts a
INNER JOIN
livros b
ON
a.id_livro = b.id
AND
upper(b.abreviacao) = $abreviatura
WHERE
a.is_title = 0
ORDER BY
capitulo, versiculo `,
GET_VERSICULO_BY_ABREVIATURA_CAPITULO_VERSICULO: `
SELECT
a.numero_versiculo as numero,
a.texto as texto
FROM
versiculos_fts a
INNER JOIN
livros b
ON
a.id_livro = b.id
AND
upper(b.abreviacao) = $abreviatura
AND
a.numero_capitulo = $capitulo
AND
a.numero_versiculo = $versiculo
LIMIT 1 `,
GET_CAPITULO_BY_ABREVIATURA: `
SELECT
a.numero_versiculo as versiculo,
a.texto as texto
FROM
versiculos_fts a
INNER JOIN
livros b
ON
a.id_livro = b.id
AND
upper(b.abreviacao) = $abreviatura
AND
a.numero_capitulo = $capitulo
WHERE
a.is_title = 0
ORDER BY
numero_capitulo, versiculo `
}