database - Every permutation from two tables -
im using access 2010.
i have 2 tables region holds 27 regions , product holds 75 product_id's.
i build query assign every region each individual product_id.
regions africa europe india
product 2020015 1546873 5554449
results africa 2020015 africa 1546873 africa 5554449 europe 2020015 europe 1546873 europe 5554449 india 2020015 india 1546873 india 5554449
i have no idea how start build query can point me in right direction please.
found uit easier thought haha
select distinct region.region, marketinggroup.[parent] marketinggroup inner join region on marketinggroup.region = region.region;
Comments
Post a Comment