Hig Udvikleren.
Jeg har lavet tre tabler Gæst, værelse og Bookning. de kom ind i databasen uden problemer.
Tabellen Gæst fungeret fint med at execute og INSERT INTO og har testet
Men resten fungere ikke
Tabellen værelse viser dette
(
Msg 8152, Level 16, State 14, Line 9
String or binary data would be truncated.
The statement has been terminated.
)
Og tabellen Booking viser dette
(
Msg 110, Level 15, State 1, Line 13
There are fewer columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.
)
- INSERT INTO Gaest (pasNr ,fuldNavn , adresse, tlf , email )
- VALUES ('1234', 'Simon jensen', 'Heimdalsgade 6, 9000','6691612' , 'simon-30@hotmail.com');
-
-
-
- INSERT INTO vaerelse (vaerelsetype, pris, nr)
- VALUES ('familie', 100, 12);
-
-
- INSERT INTO Bookning (bookingId, betalingsMaode, bookingengsDato )
- VALUES ('1212' ,'depositum' ,' 20.1.2016','1234' );
- create table Gaest
- (
- gaestId int iDentity primary key not null,
- pasNr int not null,
- fuldNavn varchar(70) not null,
- adresse varchar(250) not null,
- tlf varchar(15) not null,
- email varchar(30) not null
- );
-
- create table Vaerelse
- (
- vaerelseId int iDentity primary key not null,
- vaerelsetype varchar not null,
- pris decimal (5,0) not null,
- nr int not null
-
- );
-
-
-
- create table Bookning
- (
- bookingId int iDentity primary key not null ,
- betalingsMaode varchar (50) not null,
- bookingengsDato datetime not null,
- statrtperiode datetime not null,
- slutperiode datetime not null,
- fk_gaestId int FOREIGN KEY REFERENCES gaest(gaestId) not null,
- fk_vaerelseId int FOREIGN KEY REFERENCES vaerelse(vaerelseId) not null
- );
Kan i se hvad er fejlen?
På forhånd tak
Indlæg senest redigeret d. 11.01.2016 17:23 af Bruger #21294