Viewing 15 posts - 286 through 300 (of 530 total)
Your point about intelligence is correct, but do you mean a 'programming language' when you refer to 'mastering language(s)'?
It's obvious that a programmer must master a language to be able...
June 15, 2003 at 7:36 am
quote:
Spank has to be the best time filler!I got 711MPH. Anyone beat me?
No, didn't...
June 13, 2003 at 4:39 am
OK, that helped a lot ...
Hope my boss doesn't get in today
June 13, 2003 at 1:57 am
Don't really agree with that one dalecorry.
In my opinion, being a good programmer does not depend on (development) language.
Language is pure syntax and features. Real skill is situated in...
June 12, 2003 at 2:56 pm
You can use the following query.
SELECT t1.bal_date,
(SELECT sum(income - outcome)
FROM your_table t2
...
June 12, 2003 at 9:33 am
Still not sure what you want to accomplish.
If the idea is to fetch the two indexvalues from the database in a single statement, consider writing a stored procedure.
You would pass...
June 12, 2003 at 4:26 am
*Putting on the serious hat again*
Yes, we do have coding guidelines.
Yes, I do see the need.
We are only 10 in our company.
IMHO, coding guidelines are needed even if you are...
June 12, 2003 at 2:11 am
If you want both records in one resultset, use UNION between the selects.
SELECT zzz FROM ...
UNION
SELECT yyy FROM ...
June 12, 2003 at 1:33 am
LOL Crispin, this is way too good.
I'm adding this to our coding guidelines...
June 12, 2003 at 1:29 am
Yep, back to the serious notes ...
Here's the complete reference if you want to know a 'real' programmer from 'the crowd':
http://www.ee.ryerson.ca:8080/~elf/hack/realmen.html
June 11, 2003 at 7:01 pm
Comparable thread some time ago. You have to do some calculation with DATEPART and DATEADD and stuff.
You should use DATEPART(wd, <<first of your month>>) to get the weekday of the...
June 11, 2003 at 6:49 pm
How about knowing how/where to look for a solution?
I am pretty sure you will find an answer to 'What's the meaning of life' on Google Discussions...
June 11, 2003 at 8:02 am
Have to agree with Frank. Curiosity is a good thing, but it has to end somewhere.
I have seen instances where starting an investigation in problem A ended up with...
June 11, 2003 at 7:31 am
There have been some threads about multi-processor machines behaving strangely. Maybe something to check out ...
June 11, 2003 at 5:17 am
AFAIK, there is no simple way. You have to update the tables separately.
If this is something you need to do often, you might want to construct a stored procedure for...
June 11, 2003 at 5:15 am
Viewing 15 posts - 286 through 300 (of 530 total)