Viewing 15 posts - 1,276 through 1,290 (of 8,731 total)
Usually, you want to repeat header information as part of the key for each row. That way, the front end will consume the data and present it in the correct...
May 16, 2017 at 9:02 am
Wild guess:
Use aggregate functions.
SELECT DISTINCT RTRIM(MAS.ID) AS "EMPLOYEE ID"
--,RTRIM(MAS.SSN) AS "SSN"
,RTRIM(MAS.BDT) AS "DATE OF BIRTH"
,MAX(CASE WHEN PXD.PYX_NO = 2111 THEN...
May 16, 2017 at 7:06 am
The best option is to use a tally table. Then you can work around that to keep only a certain range and use a certain interval.
Here's an example, but...
May 16, 2017 at 7:00 am
Your function has a problem when it's used against negative numbers. I wrote an article some time ago about this options which simulate CEILING and FLOOR. You can read it...
May 16, 2017 at 6:27 am
May 15, 2017 at 9:25 am
May 15, 2017 at 9:03 am
May 15, 2017 at 6:56 am
May 15, 2017 at 6:18 am
May 12, 2017 at 12:48 pm
May 12, 2017 at 12:35 pm
Funny that you started talking about comments when a friend posted the following quote:
“Good code is its own best documentation. As you’re about to add a comment, ask...
May 12, 2017 at 12:11 pm
Hi,
Looking for help with a bit of a...
May 11, 2017 at 12:48 pm
May 11, 2017 at 5:47 am
May 10, 2017 at 11:59 am
Viewing 15 posts - 1,276 through 1,290 (of 8,731 total)