codice:CREATE TABLE PRENOTAZIONE ( Id_prenotazione integer NOT NULL AUTO_INCREMENT, Nome_cliente varchar(30) NOT NULL, Cognome_cliente varchar(30) NOT NULL, Data_prenotazione varchar(30) NOT NULL, Ora_prenotazione time NOT NULL, Num_persone integer NOT NULL, PRIMARY KEY(Id_prenotazione));