Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Vladislav adgadhadhadhadhadh

CREATE TABLE [Klanten] (
	Klanten_ID integer(5),
	Naam text(40),
	Adres text(40),
	Postcode text(6),
	Woonplaats text(40),
	Land text(40),
	Geboortedatum date(8),
	Rekeningnummer text(20),
	Bonus text(3),
  

)
GO
CREATE TABLE [Reizen] (
	Reis_ID integer(5),
	Bestemming text(40),
	Vervoer text(40),
	Vertrek_datum date(10),
	Reis_duur integer(3),
	Logies text(250),
	Prijs decimal(6),

)
GO
CREATE TABLE [Reisboeking] (
	Boekin_ID integer(5),
	Klant_ID integer(5),
	Reis_ID integer(5),
  


GO

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.