Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE IF NOT EXISTS `clienti` (
- `id` mediumint(8) UNSIGNED NOT NULL AUTO_INCREMENT,
- `nome` VARCHAR(100) NOT NULL,
- `indirizzo` VARCHAR(200) NOT NULL,
- `email` VARCHAR(200) NOT NULL,
- `telefono` VARCHAR(15) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- e creiamo qualche utente fittizio (grazie a it.namegenerator.com)
- INSERT INTO `clienti` (`id`, `nome`, `indirizzo`, `email`, `telefono`) VALUES
- (1, 'Carmen Li Fonti', 'Via Medina 44, 34073 Grado GO', 'CarmenLiFonti@armyspy.com', '0393 5441715'),
- (2, 'Ludovico Trevisano', 'Via del Pontiere 144, 10040 Villar Dora TO', 'LudovicoTrevisano66@gmail.com', '0378 5847842'),
- (3, 'Nunzia Esposito', 'Via Vipacco 22, 17014 Ferrania SV', 'NunziaEsposito@rhyta.com', '0361 6785452');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement