Viewing 3 posts - 1 through 3 (of 3 total)
Hugo Kornelis (5/6/2013)
May 6, 2013 at 3:59 am
malleswarareddy_m (4/26/2013)
---Statement 1
CREATE TABLE #table1
(
ID int PRIMARY KEY,
Name varchar(20)
CONSTRAINT UN_Name UNIQUE(Name)
);
CREATE TABLE #table2
(
ID int PRIMARY KEY,
PersonName varchar(30) REFERENCES #table1(Name)
);
go
select * from #table1
select * from...
April 27, 2013 at 12:56 am
An interesting article, but IMO it would be even better if you stated what you wanted: "...to replace the entire block of records for ID=2" in the introduction, or at...
April 5, 2013 at 8:05 am
Viewing 3 posts - 1 through 3 (of 3 total)