-
Notifications
You must be signed in to change notification settings - Fork 1
/
dbspider.sql
127 lines (108 loc) · 3.45 KB
/
dbspider.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
121
122
123
124
125
126
127
-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Creato il: Apr 02, 2016 alle 00:32
-- Versione del server: 10.1.10-MariaDB
-- Versione PHP: 7.0.4
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `dbspider`
--
-- --------------------------------------------------------
--
-- Struttura della tabella `indirizzi`
--
CREATE TABLE `indirizzi` (
`idUrl` int(11) NOT NULL,
`dominio` varchar(255) NOT NULL,
`urlPartenza` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dump dei dati per la tabella `indirizzi`
--
INSERT INTO `indirizzi` (`idUrl`, `dominio`, `urlPartenza`) VALUES
(1, 'itiscuneo.gov.it', 'http://www.itiscuneo.gov.it/'),
(2, 'istruzione.it', 'http://www.istruzione.it/'),
(3, 'lastampa.it', 'http://www.lastampa.it/'),
(4, 'repubblica.it', 'http://www.repubblica.it/'),
(5, 'corriere.it', 'http://www.corriere.it/'),
(6, 'studenti.it', 'http://www.studenti.it/'),
(7, 'abctribe.com', 'http://it-it.abctribe.com/'),
(8, 'wikipedia.org', 'https://it.wikipedia.org'),
(9, 'tomshw.it', 'http://www.tomshw.it/'),
(10, 'paginebianche.it', 'http://www.paginebianche.it'),
(11, 'vallauri.edu', 'http://www.vallauri.edu'),
(12, 'facebook.com', 'https://www.facebook.com'),
(13, 'linkedin.com', 'https://it.linkedin.com'),
(14, 'twitter.com', 'https://twitter.com'),
(15, 'youtube.com', 'https://www.youtube.com'),
(16, 'github.com', 'https://github.com/'),
(17, 'polito.it', 'http://www.polito.it/'),
(18, 'unito.it', 'http://www.unito.it/'),
(19, 'paginegialle.it', 'http://www.paginegialle.it/'),
(20, 'amazon.it', 'http://www.amazon.it/');
-- --------------------------------------------------------
--
-- Struttura della tabella `professori`
--
CREATE TABLE `professori` (
`idProf` int(11) NOT NULL,
`cognome` varchar(50) NOT NULL,
`contatore` int(11) NOT NULL,
`selezionato` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dump dei dati per la tabella `professori`
--
INSERT INTO `professori` (`idProf`, `cognome`, `contatore`, `selezionato`) VALUES
(4, 'Rosso Maurizio', 0, 1),
(5, 'Diego Nova', 0, 1),
(6, 'Giraudo Giuseppe', 0, 1),
(7, 'Tosello Giovanni', 0, 1),
(8, 'Pasquale Alessandra', 0, 1),
(9, 'Tonello Sabrina', 0, 1),
(10, 'Basiletti Emanuela', 0, 1),
(11, 'Puppo Marco', 0, 1),
(12, 'Rosa Guido', 0, 1),
(13, 'Mina Guido', 0, 1),
(14, 'Girardi Stefano', 0, 1),
(15, 'Sperotto Sergio', 0, 1),
(16, 'Ricerca', 0, 1),
(17, 'ITIS', 0, 1),
(18, 'Delpozzo', 0, 1);
--
-- Indici per le tabelle scaricate
--
--
-- Indici per le tabelle `indirizzi`
--
ALTER TABLE `indirizzi`
ADD PRIMARY KEY (`idUrl`);
--
-- Indici per le tabelle `professori`
--
ALTER TABLE `professori`
ADD PRIMARY KEY (`idProf`);
--
-- AUTO_INCREMENT per le tabelle scaricate
--
--
-- AUTO_INCREMENT per la tabella `indirizzi`
--
ALTER TABLE `indirizzi`
MODIFY `idUrl` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT per la tabella `professori`
--
ALTER TABLE `professori`
MODIFY `idProf` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
/*!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 */;