Re: I am confused as to whether I should use numeric IDs or not

From: Heinz Huber <Heinz.Huber_at_elbanet.co.at>
Date: 2000/02/02
Message-ID: <389833F1.4814C2F5_at_elbanet.co.at>#1/1


> Tony Perovic wrote:
>
> Keep the tables normalized and use views to pull together the data you
> need for VB using views like this:
>
> SELECT Contact-History.*
> Customers.Customer_name,
> Contacts.Contact_name,
> SalesPeople.Salesperson_name,
> FROM Contact-History
> INNER JOIN Contacts ON Contact-History.ContactID =
> Contacts.Contactid
> INNER JOIN Customers ON Contact-History.CustomerID =
> Customers.Contactid
> INNER JOIN Salespeople ON Contact-History.SalesPersonID =
> Contacts.SalesPersonID
> WHERE ...
> ORDER BY ...
But keep in mind, that the view will probably not be updateable.

Heinz Received on Wed Feb 02 2000 - 00:00:00 CET

Original text of this message