Viewing 15 posts - 16 through 30 (of 48 total)
October 16, 2017 at 4:47 am
SELECT a.Name,October 16, 2017 at 4:35 am
SELECT CASE
WHEN (SUM(a.ISC1Null)+SUM(a.ISC2Null)+SUM(a.ISC3Null)+SUM(a.ISC4Null)) %3 = 0 THEN 'c1,c2,c3,c4'
WHEN (SUM(a.ISC1Null)+SUM(a.ISC2Null)+SUM(a.ISC3Null))...
October 16, 2017 at 4:14 am
I have multiple triggers which do similar things, like updating some summary field of one...
October 16, 2017 at 2:59 am
October 15, 2017 at 6:47 am
October 12, 2017 at 12:42 am
SELECT TOP 10000000 *,...October 9, 2017 at 9:22 am
Don't know if this suffice the requirement. Below code is efficient than the above
select b.*,a.quantity from orders a
right join orders b
on a.orderid =...
October 9, 2017 at 8:00 am
October 6, 2017 at 11:35 pm
CREATE TABLE [dbo].[Space](
[DBName] [varchar](128) NOT NULL,
[BFileName] [varchar](128) NOT...
October 6, 2017 at 6:42 am
October 6, 2017 at 5:11 am
October 6, 2017 at 4:53 am
Viewing 15 posts - 16 through 30 (of 48 total)