Viewing 5 posts - 16 through 20 (of 20 total)
SQL Kiwi (5/24/2012)
tobinare (5/24/2012)
I'm very new to SQL Server and am programming a front end to a database using c++ and ADO.
If this is classic ADO, you won't be able...
May 24, 2012 at 3:02 pm
SGT_squeequal (5/24/2012)
May 24, 2012 at 2:13 pm
Thanks SSCommitted and Jared. Both methods are useful to my understanding of SQL Server and workable. Thanks again.
April 5, 2012 at 3:39 pm
Here you go.
USE Master
GO
CREATE DATABASE JoinTest;
GO
USE JoinTest;
GO
CREATE TABLE Customers
(
CustomerName varchar(50),
Addr varchar(50),
City varchar(50)
);
CREATE TABLE Products
(
ProductName varchar(50),
Descr varchar(50),
Price money
);
CREATE TABLE Sales
(
SaleDate datetime,
ProductName varchar(50),
CustomerName varchar(50),
Quantity int
);
GO
INSERT INTO Customers VALUES ('Ken', '123 Elm...
April 5, 2012 at 12:27 pm
Viewing 5 posts - 16 through 20 (of 20 total)