8
votes
12answers
447 views
What is the “??” operator for?
I was wondering about "??" signs in c# code.. what is it for? And how can i use it?
what about "int?"? is it nullable int?
See also:
?? Null Coalescing Operator —> What does coalescing mean?
6
votes
6answers
490 views
?? Null Coalescing Operator --> What does coalescing mean?
I'm tempted to lie and say that English is my second language, but the truth is that I just have no idea what 'Coalescing' means. I know what ?? 'does' in C#, but the name doesn't make sense to me.
…
5
votes
1answer
117 views
How to figure out which column/value the COALESCE operator successfully selected?
I have a table that I wish to find the first non-null value from 3 (and only 3) columns for each ID starting with Col1 then to Col2 then to Col3
Note: Col3 is NEVER NULL
ID Col1 Col2 Col3
…
5
votes
7answers
723 views
Coalesce vs empty string concatenation
My coworker is new to C# and didn't know about the coalesce operator. So, I saw him write a line of code like this:
string foo = "" + str;
The idea being that if str is null, this expression would …
3
votes
3answers
475 views
COALESCE - guaranteed to short-circuit?
From this question, a neat answer about using COALESCE to simplify complex logic trees. I considered the problem of short circuiting.
For instance, in functions in most languages, arguments are …
2
votes
14answers
229 views
In your opinion what is more readable: ?? (operator) or use of if’s
I have a method that will receive a string, but before I can work with it, I have to convert it to int. Sometimes it can be null and I have to change its value to "0". Today I have:
public void …
1
vote
2answers
103 views
COALESCE with NULL
I found this snippet of SQL in a view and I am rather puzzled by it's purpose (actual SQL shortened for brevity):
SELECT
COALESCE(b.Foo, NULL) AS Foo
FROM a
LEFT JOIN b ON b.aId=a.Id
I cannot …
1
vote
5answers
220 views
SQL how to find non null column?
I have a table with lots of columns, say I have columns
A, B, C, D
in each of these columns, only one column in any one record will be filled and the others will always be NULL.
I need a …
1
vote
2answers
526 views
Advanced multiple join in subquery using LINQ
I have spent the afternoon trying to wrap my mind around how to translate the following query into LINQ, but I can't quite get there.
declare @productId int; set @productId = 3212;
select * from …
1
vote
6answers
314 views
COALESCE… Can anybody help me to optimize this code?
Can anybody help me to optimize this code? At present it takes 17 seconds.
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
--SpResumeSearch …
1
vote
4answers
392 views
Factor out COALESCE function?
I have a large query (not written by me, but I'm making some modifications). One thing that kind of bugs me is that I've got the same COALESCE function in about four places. Is there a way to factor …
1
vote
5answers
1k views
Combine rows in Access 2007
I'm looking for an Access 2007 equivalent to SQL Server's COALESCE function.
In SQL Server you could do something like:
---Person---
John
Steve
Richard
DECLARE @PersonList nvarchar(1024)
SELECT …
0
votes
3answers
21 views
How to avoid NULL when using Value-Name Mapping in SQL
I have a table like the following which is basically used to "give a name" to a value in a table (this table contains values for a bunch of other tables as well, not just for MYTABLE; I've omitted a …
0
votes
0answers
31 views
Get max of two dates from two different tables in teradata - scenario?
I have two tables table1 and table2. Table2 is having less number of rows than table1. In these two tables there are two date columns caldate1 in table1 and caldate2 in table2. So now I need to join …
0
votes
2answers
98 views
ObjectDataSource and null parameters
Hi everybody,
I'm using Visual Web Developer 2008 EE using a Dataset (.xsd) to develop an invoicing application and i'm having trouble creating a custom search query.
I have an ObjectDataSource that …
