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
- (2, 'Ludovico Trevisano', 'Via del Pontiere 144, 10040 Villar Dora TO', '[email protected]', '0378 5847842'),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement