Viewing 15 posts - 3,946 through 3,960 (of 15,381 total)
SQLTestUser (8/26/2014)
August 26, 2014 at 12:12 pm
SQLTestUser (8/26/2014)
August 26, 2014 at 10:42 am
Great question. Thanks!!!
August 26, 2014 at 7:14 am
jkalmar 43328 (8/25/2014)
C1473045850 T1954 3730 ''
C1473045850 T1954 3731 ''
C1473045850 T1954 3732 ...
August 25, 2014 at 1:40 pm
Something this should work.
select *
from PRE_LOAD
where BatteryID not in
(
select BatteryID
from PRE_LOAD
where LBSTAT = 'NOT DONE'
)
August 25, 2014 at 12:46 pm
djj (8/25/2014)
Ed Wagner (8/25/2014)
SQLRNNR (8/25/2014)
Ed Wagner (8/22/2014)
TomThomson (8/22/2014)
crookj (8/22/2014)
djj (8/22/2014)
Ed Wagner (8/22/2014)
ReaperVision (The Grim Reaper's Brother)
Wonder Man
Wonder Woman
Diana
Charles
William
Burroughs
August 25, 2014 at 10:45 am
Jeff Moden (8/23/2014)
Sean Lange (8/22/2014)
There is no valid reason that one is preferred over the other.
Actually, there is 😀 ... the first code is both shorter to write and...
August 24, 2014 at 10:44 pm
sku370870 (8/22/2014)
Lynn Pettis (8/22/2014)
Sean Lange (8/22/2014)
brad.mason5 (8/22/2014)
SELECT TaskID
...
August 22, 2014 at 3:26 pm
sku370870 (8/22/2014)
CREATE TABLE #tblTasks
(
TaskID int,
TaskDate...
August 22, 2014 at 2:49 pm
brad.mason5 (8/22/2014)
SELECT TaskID
,TaskDate
...
August 22, 2014 at 2:46 pm
CELKO (8/22/2014)
What do you use for the PK on lookup tables?
I use the encoding that is being used. The IDENTITY property (not a column!) is the count of insertion...
August 22, 2014 at 11:48 am
is250sp (8/22/2014)
Correct me if I am wrong but that example is doing a pivot on a single field. I am looking to pivot 3 fields.
Take a look at the...
August 22, 2014 at 10:24 am
Cathy DePaolo (8/22/2014)
August 22, 2014 at 9:34 am
Snargables (8/22/2014)
August 22, 2014 at 9:24 am
Snargables (8/22/2014)
i've never heard of anyone using the identity as the primary key
Really? What do you use for the PK on lookup tables? I am not by any means saying...
August 22, 2014 at 9:20 am
Viewing 15 posts - 3,946 through 3,960 (of 15,381 total)