-
Notifications
You must be signed in to change notification settings - Fork 0
/
tfidf.sql
120 lines (96 loc) · 2.7 KB
/
tfidf.sql
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Waktu pembuatan: 21 Nov 2023 pada 02.22
-- Versi server: 8.0.30
-- Versi PHP: 8.1.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `p`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `documents`
--
CREATE TABLE `documents` (
`id` int NOT NULL,
`content` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `document_terms`
--
CREATE TABLE `document_terms` (
`id` int NOT NULL,
`document_id` int DEFAULT NULL,
`term_id` int DEFAULT NULL,
`tfidf` double DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `terms`
--
CREATE TABLE `terms` (
`id` int NOT NULL,
`term` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `documents`
--
ALTER TABLE `documents`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `document_terms`
--
ALTER TABLE `document_terms`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `unique_document_term` (`document_id`,`term_id`),
ADD KEY `term_id` (`term_id`);
--
-- Indeks untuk tabel `terms`
--
ALTER TABLE `terms`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `term` (`term`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `documents`
--
ALTER TABLE `documents`
MODIFY `id` int NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `document_terms`
--
ALTER TABLE `document_terms`
MODIFY `id` int NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `terms`
--
ALTER TABLE `terms`
MODIFY `id` int NOT NULL AUTO_INCREMENT;
--
-- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)
--
--
-- Ketidakleluasaan untuk tabel `document_terms`
--
ALTER TABLE `document_terms`
ADD CONSTRAINT `document_terms_ibfk_1` FOREIGN KEY (`document_id`) REFERENCES `documents` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `document_terms_ibfk_2` FOREIGN KEY (`term_id`) REFERENCES `terms` (`id`) ON DELETE CASCADE;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;