I have 3 Tables
Item, Primary, Secondary
i want it to return
All columns
on Items and
Brandname
from Primary and
Size, Color
from Secondary
ItemID - pk(item)
ItemID - fk(Primary)
ItemID - fk(Secondary)
i know how to do 2 tables but I'm having problem on how to do 3 tables
here's my code
From Item, Primary, Secondary
Where Item.ItemID=Primary.ItemID AND Item.ItemID=Secondary.ItemID
can someone point me out on my mistakes
just notice Primary is color blue is this a reserved words from access?