Hello everybody
Lets suppose we have
Table: products (As Attached)
I wrote the following query:
TRANSFORM Count(prod_ID)
SELECT seller,Count(prod_ID) AS Totally
FROM products
GROUP BY seller
PIVOT color;
It gives "Query1" result (As Attached)
Now, How could I get "Query2" result? (Also Attached)
Thank you in advance
Lets suppose we have
Table: products (As Attached)
I wrote the following query:
TRANSFORM Count(prod_ID)
SELECT seller,Count(prod_ID) AS Totally
FROM products
GROUP BY seller
PIVOT color;
It gives "Query1" result (As Attached)
Now, How could I get "Query2" result? (Also Attached)
Thank you in advance