[SQL] determining how many products are in how many categories
# product table (simplified): create table p ( id char(22) not null primary key, name text, desc text ); # product category table (simpl.): create table pc ( id char(22) not null primary key, name text, desc text ); # table that maps products into categories: create table p_pc ( id ch
[SQL] unsubscribe
---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings