For example
create table Equipment (
Equipmenttype nvarchar(1,
Description nvarchar(10),
Primary Key (Equipmenttype)
)
Create table Room (
RoomID nvarchar(8),
Capacity numeric(3),
Roomtype(fk,nvarchar(2)
)
I want to create the following table...
create table RoomEquipment(
(RoomID here)
(Equipmenttype here)
but Equipmenttype
is not a primary key.