Thread
:
How to service data for multiple customers
View Single Post
#
2
(
permalink
)
02-29-2008, 08:29 AM
--CELKO--
Posts: n/a
Re: How to service data for multiple customers
CREATE TABLE CustomerGrps
(grp_nbr INTEGER NOT NULL, -- a code for the CHAID analysis??
customer_id ...,
..
PRIMARY KEY (grp_nbr, customer_id),
...)'
--CELKO--