Viewing 15 posts - 361 through 375 (of 10,144 total)
April 5, 2018 at 8:34 am
April 5, 2018 at 5:26 am
April 5, 2018 at 5:08 am
April 5, 2018 at 1:34 am
April 4, 2018 at 10:07 am
i have a table where it has empid, phone type and phone number
one employee has...
April 4, 2018 at 9:25 am
Lynn Pettis - Thursday, March 29, 2018 12:57 PMAny one hear from R Barry Young lately?
Yeah he's good, spends all day bitchin'...
April 3, 2018 at 3:13 am
Having spent a little time on this, I reckon the following code snippet should help. You will need to use appropriate string conversions and NULL checking so that the columns...
March 23, 2018 at 9:58 am
SELECT * FROM #TAB1 EXCEPT SELECT * FROM #TAB2
SELECT * FROM #TAB2 EXCEPT SELECT * FROM #TAB1
March 23, 2018 at 9:26 am
A deadlock occurs when
tran 1 has a lock on object A and cannot continue without also obtaining a lock on object B
and
tran2 has a lock...
March 23, 2018 at 5:52 am
Thanks.
-- remove "noise" - anything which isn't required as output, or for the query to function
-- use proper...
March 23, 2018 at 5:19 am
You can't have different numbers of columns in different rows.
Can you post the whole query?
March 23, 2018 at 4:31 am
It's called a Crosstab or Pivot query. An excellent article by ssc's Jeff Moden shows how to do it:
http://www.sqlservercentral.com/articles/T-SQL/63681/
Holler if you need a hand....
March 23, 2018 at 3:36 am
March 22, 2018 at 2:53 am
Viewing 15 posts - 361 through 375 (of 10,144 total)