Viewing 15 posts - 5,626 through 5,640 (of 6,486 total)
Jason Selburg (11/29/2007)
Use COALESCE. It returns the first NON-NULL value in the list.
WHERE
col1 = COALESCE(@variable, col1)
Sorry Jason - gotta part ways with ya here...
Sandy...
November 29, 2007 at 12:14 pm
Generic the answer to your question is - yes, you can use multiple LIKE statements, but in your case - you're trying to do too many things in one, which...
November 29, 2007 at 12:03 pm
Jack Corbett (11/29/2007)
Foreign Keys are a good practice. At the very least there is always at least 2 applications...
November 29, 2007 at 11:45 am
Steve Jones - Editor (11/29/2007)
The reservations are probably cheap knowing Antares. It will be the shipping cost of heating oil and power you'll have to worry about 😛
Nonsense - get...
November 29, 2007 at 11:40 am
Let's see if we can define it a little differently:
Using an example syntax of ....
X in (list)
...., the IN syntax compares X to each value and returns TRUE...
November 29, 2007 at 9:27 am
paulr (11/26/2007)
November 28, 2007 at 9:28 pm
noeld (11/26/2007)
use ;
go
declare @vMin int, @vMax int, @vTotal int;
set @vTotal = 142607203;
set @vMin = 1;
set @vMax = 5000;
while @vmax <= @vTotal
begin
BEGIN...
November 28, 2007 at 4:57 pm
Thanks! - when all of your end-users are doctors (who think of themselves as royalty), then you tend to have to play fireman a lot....:P
November 28, 2007 at 4:41 pm
If you're on the highway a lot, without a lot of stopping and starting (which is apparently part of the trick required to recharge your hybrid), your Hybrid isn't going...
November 28, 2007 at 4:34 pm
If you plan on doing this a lot - you should look at setting up a linked Server. That will allow you to access the data from a remote...
November 28, 2007 at 4:31 pm
if you don't specify a style, your CAST syntax, and your CONVERT syntax should both return only 6 digits.
If on the other hand you try this:
convert(char,@radius,2) --the 2 is the...
November 28, 2007 at 4:15 pm
I have the same issue for a while, so I submitted mine to a professional resume writer outfit, that seemed to help with that. You might care to give...
November 28, 2007 at 4:03 pm
Philip Horan (11/28/2007)
November 28, 2007 at 3:55 pm
the char, varchar, nchar, nvarchar types will take any number of extended characters. It doesn't care that it can't display them.
Are you sure that Oracle isn't accepting them, and...
November 28, 2007 at 3:50 pm
alain_smithers (11/28/2007)
November 28, 2007 at 3:43 pm
Viewing 15 posts - 5,626 through 5,640 (of 6,486 total)