This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="work_iframe"> | |
<iframe src="https://iorestoacasa.work/table.html" | |
height="70" width="119" style="border:0px;" | |
name="iorestoacasa"> | |
</iframe> | |
</div> | |
<style> | |
.work_iframe { | |
position: relative; | |
padding-bottom: 56.25%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE nazioni( | |
Code char(3) PRIMARY KEY, | |
Name char(52), | |
Continent enum('Asia','Europe','North America','Africa','Oceania','Antarctica','South America'), | |
Region char(26), | |
SurfaceArea float(10,2)); | |
INSERT INTO nazioni(Code, Name, Continent, Region, SurfaceArea) | |
SELECT Code, Name, Continent, Region, SurfaceArea | |
FROM world.country; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE citta( | |
ID int(11) auto_increment primary key, | |
Nome char(35), | |
CodiceNazione char(3), | |
Distretto char(20), | |
Popolazione int(11)); | |
INSERT INTO citta | |
SELECT * | |
FROM world.city |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
La sintassi di Pascoli è ben diversa da quella della tradizione poetica italiana, che era modellata sui classici e fondata su elaborate e complesse gerarchie di proposizioni principali, coordinate e subordinate (Carducci e D'Annzunzio). Nei testi poetici pascoliani la coordinazione prevale sulla subordinazione, in modo tale che la struttura sintattica si frantuma in segmenti parattatici di brevi frasi allineate senza rapporti gerarchi tra di loro spesso collegate non da congiunzioni, ma per asindeto. Spesso, inoltre, le frasi sono ellittiche, mancano del soggetto, o del verbo, o assumono la forma dello stile nominale (successione di semplice sostantivi). La frantumazione pascoliana della frase rivela il rifiuto di una sistemazione logica dell'esperienza, il prevalere della sensazione immediata, dell'intuizione, dei rapporti analogici, allusivi, suggestivi, che indicano una trama di segrete corrispondenze tra le cose, al di là del visibile (poeta-veggente). È una sintassi che traduce perfettamente la visione d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE Romanzi; | |
CREATE TABLE Romanzi (CodiceR varchar(20) PRIMARY KEY UNIQUE NOT NULL, | |
Titolo varchar(20) NOT NULL, | |
NomeAut varchar(20) NOT NULL | |
REFERENCES Autori (NomeAut), | |
Anno integer NOT NULL, | |
CHECK (Anno>1000)); | |
CREATE TABLE Personaggi (NomeP varchar(20) PRIMARY KEY UNIQUE NOT NULL, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import telepot | |
import string | |
import time | |
import sys | |
from fractions import Fraction | |
machine_state = -1 | |
numeratore = 1 | |
denominatore = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE Moso; | |
USE Moso; | |
CREATE TABLE Auto (Targa varcahr(7) NOT NULL, | |
Marca varchar(15) NOT NULL, | |
Cilindrata integer NOT NULL, | |
CHECK(Cilindrata>0), | |
Potenza integer NOT NULL, | |
CodF varchar(20) NOT NULL PRIMARY KEY UNIQUE, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create database Teatro; | |
create table Attori (CodAttore varchar(10) PRIMARY KEY NOT NULL UNIQUE, | |
Nome char(10) NOT NULL, | |
AnnoNascita date NOT NULL, | |
Nazionalita char(10) NOT NULL); | |
create table Film (CodFilm varchar(10) PRIMARY KEY NOT NULL UNIQUE, | |
Titolo char (10) NOT NULL, | |
AnnoProduzione date NOT NULL, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE ospedale; //Creo DB | |
use ospdale; //Connessione al DB creato | |
CREATE TABLE Paziente ( codicepaziente char(5) PRIMARY KEY, | |
cognome varchar(20) NOT NULL, | |
nome varchar(20) NOT NULL ); //Creo la tabella Paziente con i vari attributi | |
CREATE TABLE Indirizzo ( cap char(5) PRIMARY KEY, | |
via varchar(25) NOT NULL, |