|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
done in a single statementA table looks like this:
create table #customer ( customerID int not null primary key, taxID char(9) not null, salesRep int null) insert #customer values (1, '111111111', 5) insert #customer values (1, '111111111', 5) insert #customer values (1, '111111111', 5) insert #customer values (1, '111111111', 5) insert #customer values (1, '111111111', 5) insert #customer values (1, '111111111', 5) insert #customer values (1, '111111111', 5) insert #customer values (1, '111111111', 5) customerID, customerTaxNo, salesRep 1,
Other interesting topics
|
|||||||||||||||||||||||