Msg 1767, Level 16, State 0, Line 1
Foreign key 'FK_thiru' references invalid table 'pice'.
Msg 1750, Level 16, State 0, Line 1
Could not create constraint. See previous errors.
that is my sql error
my query below
/*cottage Table */
create table cottage
(
cottage_ID varchar (50),
invoice_ID varchar (50),
booking_ID varchar (50),
cottageName char (50),
phoneNumber varchar (50),
Email char (50),
postAddress char (50),
streetAddress char (50),
city char(50),
country char (50),
primary key (cottage_ID))
select *from cottage
/* client */
create table client
(
client_ID varchar (50),
booking_ID varchar (50),
client_firstName char (50),
client_LastName char (50),
phoneNumber varchar (10),
Email char (50),
Go to the complete details ...