Ok, I'm having an off day at work, and can't figure this out. I need to join two tables, that have no key to join on.
TABLE A has a list of items, and their features. e.g.
ITEM_NAME, FEATURE_NAME, FEATURE_VALUE
Laptop1, RAM, 2GB
Laptop1, HDD, 160GB
Laptop1, Display, 14"
Laptop2, RAM, 1GB
Laptop2, Display, 11"
etc.
TABLE B is a list of features currently available, e.g.
FEATURE_NAME
RAM
HDD
Display
CPU
etc.
I need to join TABLE A to TABLE B so even if a feature (FEATURE_NAME) doesn't have a value (FEATURE_VALUE), it still gets outputed for each ITEM_NAME.
Anyone here know? Doing it in MSSQL....
TABLE A has a list of items, and their features. e.g.
ITEM_NAME, FEATURE_NAME, FEATURE_VALUE
Laptop1, RAM, 2GB
Laptop1, HDD, 160GB
Laptop1, Display, 14"
Laptop2, RAM, 1GB
Laptop2, Display, 11"
etc.
TABLE B is a list of features currently available, e.g.
FEATURE_NAME
RAM
HDD
Display
CPU
etc.
I need to join TABLE A to TABLE B so even if a feature (FEATURE_NAME) doesn't have a value (FEATURE_VALUE), it still gets outputed for each ITEM_NAME.
Anyone here know? Doing it in MSSQL....