Viewing 14 posts - 1 through 14 (of 14 total)
I just want Week and Target column not formula column.Formula is just reference to calculate Target column
July 2, 2020 at 12:56 pm
I have both 2008 and 2012 systems.I can run query on 2012,its not an issue
November 17, 2017 at 6:02 am
You can answer query for 2012 .It would be great help
Thanks
November 17, 2017 at 5:58 am
Hi Guys
Using this query select OFFICE_ID,
CASE WHEN OFFICE_ID in('1126','1127','1128','9999') THEN 'Yes' ELSE 'No ID_Exists' end
from [REV_BINDERS2]
i m getting this
OFFICE_ID(No column name)
1126 ...
October 27, 2014 at 9:15 pm
I want such query in which i put specific IDs in IN operator and give me result which are present in table and which are not.
October 26, 2014 at 10:15 pm
insert into dbo.retail(subscriber,wan,activation_date)
select '1700', '1802','2014-10-05 00:00:00.000' UNION ALL
select '1700','1801','2014-10-09 00:00:00.000'
For above dataset query wont work because wan 1801 activation_date is latest so it should come in New...
October 5, 2014 at 7:14 pm
Thanks for this solution.
Is this possible i get old dated wan and new dated wan according to activation_date column.?
Activation date of both wan compared then old dated wan set...
September 19, 2014 at 4:45 am
Yea its in oracle but you can give solution accordingly
September 17, 2014 at 1:53 pm
This query will return those id also which contain resource type BT (ex: 119319005).I only want those ids which contain RG and MI only.
September 17, 2014 at 7:20 am
That dataset was just an example.I need only those id which has MI and RG both
September 17, 2014 at 6:02 am
I m using oracle sql developer...
any good solution for that??
July 4, 2014 at 6:14 am
WHERE KNO in ('8789','8896','6963')
AND KNO = 0
this will return empty records....
i want output
KNO
6963
June 27, 2014 at 10:35 am
Viewing 14 posts - 1 through 14 (of 14 total)