Tagged Questions
COALESCE is a SQL function that returns the first non-NULL expression among its arguments. COALESCE() is ANSI standard, so that it's preferred by many people over similar alternatives such as ISNULL(), NVL() or IFNULL()
20
votes
4answers
2k views
?? Coalesce for empty string?
If this is a duplicate please point me to it and I'll close, I couldn't find anything. Something I find myself doing more and more is checking a string for empty (as in "" or null) and a conditional ...
19
votes
4answers
510 views
Is the null coalesce operator thread safe?
So this is the meat of the question: Can Foo.Bar ever return null? To clarify, can '_bar' be set to null after it's evaluated as non-null and before it's value is returned?
public class Foo
...
19
votes
12answers
1k 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?
16
votes
5answers
346 views
Does SQL Server read all of a COALESCE function even if the first argument is not NULL?
I'm using a T-SQL COALESCE function where the first argument will not be null on about 95% of the times it is ran. If the first argument is NULL, the second argument is quite a lengthy process:
...
16
votes
5answers
1k 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.
...
9
votes
4answers
2k views
How to get the first non-null value in Java?
Is there a Java equivalent of SQL's COALESCE function? That is, is there any way to return the first non-null value of several variables?
e.g.
Double a = null;
Double b = 4.4;
Double c = null;
I ...
7
votes
1answer
250 views
SQL Query: Hierarchical Coalesce
I have a table that defines a heirarchy:
Create Table [example] (
id Integer Not Null Primary Key,
parentID Integer Null,
largeData1 nVarChar(max) Null,
...
7
votes
2answers
615 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 ...
7
votes
7answers
2k 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 ...
6
votes
4answers
189 views
What's wrong with the ?? operator used like this:
So insteed of writing:
if (obj.Collection == null)
obj.Collection = new Collection();
obj.Collection.Add(something);
I thought of writing:
obj.Collection = obj.Collection ?? new Collection;
...
6
votes
1answer
339 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
3answers
274 views
C# coalesce operator doesn't replace a null method return value?
I have this code:
MyClass _localMyClass = MyClassDAO.GetMyClassByID(123) ?? new MyClass();
This is the method:
public static MyClass GetMyClassByID(int id)
{
var query = from m in ...
4
votes
2answers
82 views
Computed Column (COALESCE vs CASE vs ISNULL)
I posted a similar question a while back and now as I need to update this code, I am back to ask a follow-on question. Previous question is here:
Computed column based on nullable columns
My data ...
4
votes
3answers
174 views
ISNULL vs COALESCE
I know that multiple parameters can be passed to COALESCE but when working dealing with a case writing SQL when you want to to check just one expression and if it doesnt exist use a default is it ...
4
votes
4answers
347 views
Clojure coalesce function
SQL offers a function called coalesce(a, b, c, ...) that returns null if all of its arguments are null, otherwise it returns the first non-null argument.
How would you go about writing something like ...
4
votes
2answers
629 views
Using COALESCE in SQL view
I need to create a view from several tables. One of the columns in the view will have to be composed out of a number of rows from one of the table as a string with comma-separated values.
Here is a ...
4
votes
3answers
1k 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 ...
4
votes
5answers
3k 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 ...
3
votes
1answer
94 views
Comma Separated String from Junction Table Inner Query (SQL Server)
I've searched many threads, sites, and blogs, as well as the API and can't seem to figure this one out. I want to create a CSV string from rows in a junction table, but here's the catch. It needs to ...
3
votes
2answers
126 views
Problem with nested left-joins and coalesce
I have strange issue with nested left-joins in postgresql... It's hard to explain, but easy to show =) here we are:
SELECT * FROM
(
SELECT 1 as key1
) sub1
LEFT JOIN
(
SELECT sub3.key3, ...
3
votes
1answer
157 views
Can I take a DISTINCT set of a COALESCE'd set of data?
I have the following bit of code, and it works so far:
SELECT
[id],
COALESCE ([Company], [LastName] + ', ' + [FirstName]) as Customer
FROM [some_database].[dbo].[some_table]
ORDER BY ...
3
votes
1answer
548 views
T-SQL COALESCE GROUPING SETS into single column without NULL duplicates
A thesaurus database where terms and categories are linked to each other and running SQL Server 2008.
Based on this and this answers. Here is a sample:
CREATE TABLE #term (termid VARCHAR(8), en ...
3
votes
2answers
426 views
Why use COALESCE() in sql statement
I'm refactoring some old code and stumbled upon this named query
(It's using hibernate on top of mysql):
delete F from
foo F
inner join user DU on F.user_id = DU.id
where
...
3
votes
5answers
476 views
More efficient double coalesce join alternative
I have a procedure with a (slightly more complex) version of the below:
CREATE PROC sp_Find_ID (
@Match1 varchar(10),
@Match2 varchar(10)
) AS
DECLARE @ID int
SELECT @ID = ID
FROM Table1
...
3
votes
2answers
268 views
SQL query to fetch products with most top 1 most recent price change
I'm using SQL Server 2005.
Let's say I have a table for products and another table for prices so that I can track price changes over time. I need a query that fetches distinct products (easy part) ...
3
votes
5answers
592 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 ...
2
votes
3answers
37 views
MySql, IFNULL(), COALSESCE() on String not replacing
Description:
My statement should replace every empty title_column with 'no name', but it doesn't:
SELECT
COALESCE(main_table.title_column, 'no name') AS title
FROM main_table;
IFNULL() behaves ...
2
votes
3answers
122 views
COALESCE, IFNULL, or NZ() function that can be used in SQL Server and MS Access
I have a project that can use either SQL Server or MS Access as the data store. In one SELECT statement, I must perform a COALESCE operation on a single column and a single value, like this:
SELECT ...
2
votes
3answers
55 views
Can I use the coalesce operator on integers to chain CompareTo?
I want to do something like this:
public override int CompareTo (Foo rhs)
{
return Bar.CompareTo(rhs.Bar) ??
Baz.CompareTo(rhs.Baz) ??
Fuz.CompareTo(rhs.Fuz) ?? 0;
}
This ...
2
votes
4answers
96 views
MySQL condition on the COALESCE syntax
I have a query composing of COALESCE syntax. the COALESCE syntax simply find the Audited Date of a file. On my WHERE statement, I just want to output the Audited File base from the AuditDate alias ...
2
votes
1answer
54 views
Is there a function equivalent to the Oracle function NVL in Mysql?
I'm selecting the max of a column from a table. But there is one problem: if there are no rows in the table, it returns null.
I want to use a function which will return a certain value if the result ...
2
votes
3answers
82 views
Equiv. to Coalesce() in XAML Binding?
In SQL I can do this:
Select Coalesce(Property1, Property2, Property3, 'All Null') as Value
From MyTable
If Property1, 2 and 3 are all null, then I get 'All Null'
How do I do this in XAML? I ...
2
votes
1answer
68 views
Is there a way to query for a possible non-existent column in mysql?
I have a script where a user can select a field across multiple tables. It uses a Union to get all of the rows. Right now, I have a mapping array to indicate whether a specific field exists in each ...
2
votes
2answers
324 views
Postgresql COALESCE performance problem
I have this table in Postgresql:
CREATE TABLE my_table
(
id bigint NOT NULL,
value bigint,
CONSTRAINT my_table_pkey PRIMARY KEY (id)
);
There are ~50000 rows in my_table.
The question ...
2
votes
3answers
196 views
How do I filter a group-by query on the value of a coalesced column?
Here's my Query that does not work because it apparently violates the rules of the HAVING clause:
SELECT
COALESCE(Publisher.name, Affiliate.name) AS Publisher
,dbo.SumKeys(Item.id) AS ...
2
votes
1answer
342 views
NHibernate QueryOver order by first non-null value (coalescing)
What I'm trying to come up is something that's expressed like this:
var result = Session.QueryOver<Foo>().OrderBy(f => f.UpdatedAt ?? f.CreatedAt);
Sure enough, this doesn't work. Rough ...
2
votes
4answers
125 views
Test for NULL & return a string if needed - what are the pro's/con's
I have a simple class which has a ToString implemented which I am happy with the content. I am trying to decide what is the (most) correct way by seeing if there are any pro's/con's for the various ...
2
votes
4answers
107 views
Coalesce operator - usage (c#) [closed]
Ive seen an increasing number of pieces of code that use the coalesce operator in a (to me anyway) slightly odd manner, thoughts on this usage?
e.g. doing:
string foo = null;
void bar(){
foo = ...
2
votes
10answers
766 views
How to concatenate strings and commas in SQL Server?
I'm new to SQL Server. I want to concatenate multiple fields with a delimiter ,. However, when the field is empty, I don't want the extra ,. What is the easiest way to handle this case?
SELECT ...
2
votes
5answers
601 views
Coalesce over Rows in MSSQL 2008,
I'm trying to determine the best approach here in MSSQL 2008.
Here is my sample data
TransDate Id Active
-------------------------
1/18 1pm 5 1
1/18 2pm 5 0
1/18 3pm 5 ...
2
votes
5answers
912 views
SQL Return Null if One Column is Null (Opposite of COALESCE())
In advance, I would like to say thanks for the help. This is a great community and I've found many programming answers here.
I have a table with multiple columns, 5 of which contain dates or null.
I ...
2
votes
13answers
288 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
1answer
43 views
Coalescing results in Linq
have looked through many posts here on SO, and haven't found any that address this. Just a note that all code presented here is simplified but representative of the real code. I have a data table that ...
1
vote
3answers
63 views
ORDER BY with columns that are sometimes empty
My SQL looks something like this:
SELECT CompanyName , LastName , FirstName FROM ... JOIN ...
ORDER BY CompanyName , LastName , FirstName
Now the problem is that column A is sometimes empty (either ...
1
vote
1answer
75 views
SQL / Coalesce - Wrong row name
I have a problem with the request below!
REQUEST:
SELECT COALESCE(date(date_field), 'Total') AS "date_field_group",
COUNT( id_field ) AS "Nombre de bookings",
CONCAT( REPLACE( REPLACE( FORMAT( SUM( ...
1
vote
1answer
46 views
Alternate value than null
As you know null never equals null in SQL.
Let's pretend we have a query like this:
declare @LastName varchar(50) = 'Nixon';
select * from Users
where LastName = @LastName;
If I want to allow ...
1
vote
2answers
102 views
Return columns as comma seperated, for more than one condition on key or more than one row
I have a table with values:
Key1 Key2 ColumnKey
1 idx here
1 idx there
2 idx where
2 idx why
I need to return, for both Key1, Key2 being ...
1
vote
1answer
264 views
How to use coalesced memory access
I have 'N' threads to perform simultaneously on device which they need M*N float from the global memory. What is the correct way to access the global memory coalesced? In this matter, how the shared ...
1
vote
1answer
94 views
How can I determine if this write access is coalesced?
How can I determine if the following memory access is coalesced or not:
// Thread-ID
int idx = blockIdx.x * blockDim.x + threadIdx.x;
// Offset:
int offset = gridDim.x * blockDim.x;
while ( idx ...
1
vote
2answers
252 views
SQL SERVER - Problems with COALESCE() function
I have this SQL function which is wrapped by a stored procedure:
ALTER FUNCTION dbo.GetObjList
(
@filterUID int = NULL,
@filterSID varchar(32) = NULL
)
RETURNS TABLE
AS
RETURN
SELECT ...