Viewing 5 posts - 1 through 5 (of 5 total)
Hi all,
First i'm sorry that i didn't provide a clear requirement.
I provided the specific value of B, 0, in order to keep the problem simple. However, in fact it must...
January 19, 2010 at 11:56 am
Paul White (1/9/2010)
DECLARE @data TABLE
(
ACHAR(2) NOT NULL,
BINT NOT NULL,
CINT NOT NULL,
VCHAR(2) NOT NULL
);
INSERT@data
VALUES('a1',...
January 9, 2010 at 9:19 am
Lynn Pettis (1/8/2010)
create table dbo.TestTable (
A char(2),
B int,
C int,
...
January 8, 2010 at 10:07 am
CREATE TABLE ViewA
(
A CHAR(2)
, B INT
, C INT
, V CHAR(2)
);
INSERT INTO ViewA
SELECT
'a1',...
January 8, 2010 at 8:24 am
Viewing 5 posts - 1 through 5 (of 5 total)