Forum: MS SQL Jul 20th, 2008 |
| Replies: 3 Views: 2,248 Hello dmmckelv,
When Edgar Frank Codd invited relational databases his primary idea was to found it on
logic algebra and set theory. The rows of relational tables (aka relations) are sets.... |
Forum: MS SQL Jun 4th, 2008 |
| Replies: 9 Views: 2,333 Hi HB25,
Your first select should look like:
select c.CustomerID, c.Surname, c.Address, c.Town, c.Postcode,
o.OrderID, o.Date,
i.ProductID, i.Qty, p.Description from Customer c
join... |