COALESCE is a SQL function that returns the first non-NULL expression among its arguments. COALESCE() is ANSI standard and may be used instead of vendor-specific alternatives such as ISNULL(), NVL() or IFNULL().
0
votes
1answer
30 views
DB2 Performance CASE vs COALESCE
I'm modifying an existing statement that joins user information in one table so that the user info can come from another table. One is a permanent table and the other is temporary (records get moved ...
0
votes
2answers
36 views
Conditional Join on multiple fields in the same table
I have a scenario where you have two tables as below where in both tables, either the person_id or organisation_id is populated
Table_1
email_id, person_id, organisation_id, email_address Usage
...
0
votes
1answer
23 views
MySql Toad if now rows return value
I am using mysql toad, i have a table which is empty and i am trying to return a string value if no records are found i have tried the under mention queries however none works, only an empty row is ...
1
vote
1answer
40 views
Null Column despite using Coalesce
Here is my Query:
SELECT
i.item,
COALESCE(COUNT(r.item_id), 0) AS TotalRating,
SUM(r.rating) as RatingSum,
re.tR as TotalReview,
AVG(r.rating) AS AverageRating
FROM items AS ...
0
votes
2answers
46 views
MySQL: Merge rows and returning default values
Imagine the following table:
id | variant | name
-----------------------
1 | 1 | a
1 | 2 | b
1 | 3 | c
2 | 1 | d
2 | 2 | e
2 | 3 | NULL
3 | 1 | g
...
0
votes
1answer
99 views
ISNULL/COALESCE for multiple fields
Consider the following data model:
Customers
CustNum | First Name | Last Name
555 John Doe
CustomerAddresses
CustNum | ShippingAddress| Line1 | Line2 | City | ...
1
vote
1answer
194 views
ORA-12704: character set mismatch
Hell when I do:
select COALESCE (CORP_ID, 0) from crmuser.accounts;
The CORP_ID records which are Null returns 0 but when I do:
select COALESCE (EMAIL, 'NO EMAIL') from crmuser.accounts
I get an ...
0
votes
2answers
91 views
The recursive coalesce challenge
I have a table with Product records and Model records. Both the product and model records has a QTY and Size column. For a given product_id, I would like to grab all qtys and sizes from the Model ...
2
votes
1answer
132 views
SQL Server: how can I use COALESCE with a PIVOT table?
What I'm trying to do is provide a value if another value doesn't exists within my pivot table.
Pivot table
SELECT *
FROM MyTable
PIVOT ( MAX(Number) for Total in ([Bob], [Jim], [Carol], ...
0
votes
2answers
75 views
PostgreSQL Update Column based on Multiple Conditions
Setting:
I use PostgreSQL 9.1.2 and have a basic table as below, where I have 4 binary columns that can take on the values Y or N. These columns also largely contain Null values, which I have denoted ...
-4
votes
2answers
123 views
How to COUNT(*) WHEN COALESCE - SQL Server
I have this T-SQL statement that adds up all of col1 and col2 but also needs to return the number of rows returned by the WHERE
The only way I figured out how to do it is count(FlightLogLegID - ...
2
votes
3answers
614 views
Select multiple rows from SQL into one row in subquery
I have query like:
DECLARE @razem VARCHAR(MAX);
SELECT Ordering.orderID ,
Document.number,
(User_info.name +' '+ User_info.surname),
Ordering.dateStart,
...
1
vote
2answers
406 views
mysql subtract two rows from column and places into an alias
I have table meter_readings with columns: id, date_taken, kwh.
I'm trying to subtract two rows in kwh column together and put the results into an alias called consumption.
I'm using:
SELECT id, kwh ...
2
votes
2answers
71 views
Is coalescing triggered for accessing memory in reverse order?
Let's say I have several threads and they access memory at addresses A+0, A+4, A+8, A+12 (each access = next thread). Such access is coalesced, right?
However if I have access the same memory but in ...
0
votes
3answers
124 views
coalesce two records into one
I have a table that stores two values; 'total' and 'owing' for each customer. Data is uploaded to the table using two files, one that brings in 'total' and the other brings in 'owing'. This means I ...
0
votes
1answer
65 views
Postgresql coalesce and set-valued function called in context that cannot accept a set
I have these two similar queries but in the first case it works Ok but in the second fails
CREATE OR REPLACE FUNCTION XmlNodes(xmlData xml, selector TEXT) RETURNS TABLE(r xml)
AS $$ SELECT ...
0
votes
2answers
166 views
ANSI equivalent of IS NULL
I am trying to find the ANSI way to write the T-SQL 'IS NULL'. (corrected, was 'IN NULL')
Some posts on the internet say you can use coalesce to make it work like 'IS NULL'
The reason I like to do ...
0
votes
1answer
786 views
SQL Server: Combine multiple rows into one row
I've looked at a few other similar questions, but none of them fits the particular situation I find myself in.
I am a relative beginner at SQL.
I am writing a query to create a report. I have ...
0
votes
2answers
97 views
What will be faster in UPDATE: COALESCE(field,value) or WHERE field is null
What query should be faster
UPDATE table1
SET field1 = COALESCE(field1, someValue)
WHERE foreignKeyField = someKeyValue
or
UPDATE table1
SET field1 = someValue
WHERE foreignKeyField = ...
1
vote
1answer
240 views
How do I coalesce a Time field in Teradata?
I'm trying to run the following piece of code:
SELECT a.job_name
, coalesce(b.target_time, cast('08:00:00' as time(2))) sla_time
FROM ud812.slarpt_job_level_info a
left outer join (
select ...
1
vote
2answers
86 views
Data is “lastName, FirstName”. I need to write it as “FirstName LastName”
Running sql server 2008 The title says it, but in my select statement I have this
COALESCE( ca.AttributeList.value('(/AttributeList/IRName)[1]','varchar(max)')
...
3
votes
2answers
131 views
What is wrong with this simple COALESCE select query? (mysql)
I have this query:
SELECT
COALESCE(CONCAT(Ar.usaf, '-', Ar.wban),"NONE") AS TABLE_NAME
FROM
`metadata`.`ISH-HISTORY_HASPOS` A
INNER JOIN `metadata`.`Artificial` Ar ON (Ar.id = A.mergeId)
...
3
votes
1answer
128 views
How many arguments does COALESCE accept?
I couln't find this in SO and thought it might be worth finding it here as the oracle documentation doesn't specify it.
http://docs.oracle.com/cd/B28359_01/server.111/b28286/functions023.htm
0
votes
1answer
90 views
How to return multiple default-values, when no results found in postgres?
I have the following function on a postgres-database:
CREATE OR REPLACE FUNCTION getNearestPoints(float[], float[], float[], float[], int)
RETURNS SETOF record AS $$ ...
1
vote
1answer
46 views
How to properly compare nullable fields for equality?
In any database, it appears to be a common practice to use coalesce() to compare nullable fields for equality. For example, if you're comparing two nullable string fields, you would use where ...
0
votes
1answer
45 views
Does Twig have a null coalesce operator?
I'm using the Twig PHP template engine.
Is there an operator available which will output first non-empty value (coalesce)?
For example (using PHP pseudocode):
{{ title ?: "Default Title" }}
I ...
0
votes
2answers
281 views
COALESCE() for blank (but not null) fields
I have two fields that I'm comparing with MySQL's function COALESCE(). For example, COALESCE(Field1, Field2). The problem is, Field1 is sometimes blank but not null; since it's not null COALESCE() ...
1
vote
3answers
189 views
SQL query to display aggregated data when result is zero
I have a table with fields like this:
Item
Category
Year
Month
Value
I want to aggregate the result from this table to display sum(value) for each category, year and month. So I have this query:
...
1
vote
4answers
509 views
How To Use COALESCE() to Add Additional Characters
I have the following syntax on my SELECT Statement:
CONCAT(first_name, " ", COALESCE(middle_initial), " ", last_name) AS full_name
Obviously, what I get is the following:
For first_name='John' and ...
1
vote
1answer
175 views
MySQL: Creating Multiple Variables with COALESCE
By using COALESCE, I can create a temporary variable called comment_votes like so:
SELECT comments.*, COALESCE(rs_reputations.value, 0) AS comment_votes FROM `comments`
LEFT JOIN rs_reputations ON ...
0
votes
1answer
70 views
SQLite Ordering rules
I have a SQLite database in android with some tables, one of them is this:
trainings (date TEXT, exercise TEXT, repetitions INTEGER, weight REAL)
and it has two indexes in weight and repetitions ...
0
votes
1answer
593 views
SQL Server 2008 - Comma seperation using coalesce as part of a larger query
I'm using coalesce to return a string of names and when I run it as a single query, I've got no problem, but when I want to put it in a larger query, I get a little stumped.
Below is the bit that ...
1
vote
2answers
147 views
MySQL query - how to return placeholder value instead of NULL if no entry found
Let's say I have a table called references, which has two fields: an id and a reference field.
I want to create a query that will provide me with a reference number based upon an id. Like this:
...
0
votes
2answers
139 views
unexpected result of concatenating column values into single string
I saw a lot of examples using COALESCE and others "methods" for this purpose .Here is one of them:
@result nvarchar(1024)
SELECT @result = COALESCE(@result + ',', '') + column_name
...
2
votes
1answer
106 views
coalesce problems
i have 2 tables for example
user_table level_table
================== ===================
| name | levelid | | id | levelname |
================== ...
0
votes
2answers
111 views
How can I return a row for each date, even when there is no data for that date (in which case the row should be filled with zero's)?
I hope I will be able to make my problem clear.
Ik have a table called tweets from which I want to extract information for each data in the daterange table. This table holds 142 dates, of which 102 ...
0
votes
1answer
72 views
SQL: cannot echo result when row is empty
$pdf->Table('select @N:=@N+1 AS no,
A.department as "DEPARTMENT",
A.no as "ASSET NUMBER" ,
A.total as "ASSET TOTAL PRICE" ,
...
4
votes
1answer
141 views
SQL Server: COALESCE causing excessive runtime
Morning People,
I'm having a little issue with COALESCE causing a stored procedure which is writing data to a table to run excessively. (without the COALESCE it takes 4 minutes and with it it takes 1 ...
1
vote
2answers
96 views
Complex join with coalesce
I have a table that I am stuffing demographic info into and then using dynamic sql to build a table from that. The demographic info comes from surveys and some of the surveys have checkboxes. With ...
0
votes
2answers
117 views
Port MySQL query to PostgreSQL
I'm migrating my MySQL databases to PostgreSQL. While connecting database to my Python script I'm getting some syntax error. So could you please convert this MySQL query into PostgreSQL:
select ...
-1
votes
1answer
287 views
Update only changed values using coalesce and dynamic SQL
I created a stored procedure to update only the rows of a table that have changed
I used the SQLSERVER coalesce function.
CREATE PROCEDURE update_only_changed
@FName varchar(50) = NULL,
...
1
vote
1answer
116 views
SQL Server CE throws error Parameter is not valid when using COALESCE
It seems that SQL Server CE does not like COALESCE with my column.
If my query has COALESCE(ep.value, '') as id, the query fails with
Parameter is not valid
I've tried using (case ep.value ...
1
vote
4answers
2k views
SQL - Ugly combination of GROUP BY and COALESCE
I have a table with data similar to the following:
[ID], [State], [foo], [DateCreated], [DateUpdated]
The longer I work on this, the uglier my SQL is getting, which tells me I'm probably doing ...
3
votes
1answer
918 views
SQL - Comma Separate Data When Using Group By
I'm using SQL Server and TSQL:
What I would like to do is comma separate values on one column when using a group by on another column. See data example below.
col1 --- col2
1121 abc
1123 ...
0
votes
0answers
184 views
Coalesce in Sql
I have two tables Users,Products. I m using the below query to fetch the products associated to a particular user. This query is returning two rows for the same user. i want a single row and the ...
-1
votes
2answers
240 views
COALESCE with a Potential Empty Field - SQL Server 2005
Here's the issue: When a Patient comes into the doctor's office, they can have their blood pressure taken 3 times. The first time is bp1; the second is bp2 and the last time is bp3.
I need to ...
0
votes
2answers
1k views
Teradata: How to compare potentially null fields without using coalesce?
We are using a query that uses coalesce to compare potentially null values. I want to get away from this because not only does it make queries more difficult to maintain, it's flat out ugly. Imagine ...
2
votes
1answer
265 views
ifnull not working on mysql
I have the following table:
+----+------------+----------+------------------+
| id | created_at | platform | platform_version |
+----+------------+----------+------------------+
| 1 | 1 | ...
0
votes
2answers
180 views
auto increment using 'case' in mysql
I have a simple table in mysql that has different types of records, differentiated by a values in the column ptype
my table looks like this
id1...ptype..usr...item
1.....43.......2......7001
...
2
votes
3answers
271 views
Coalesce potentially Empty LINQ query results
Im using Linq to return IDs from 4 cascading dropdown menus.
The user may have selected 1 or more values from either 1 or all of the menus. From the users selections, Im then quering the text ...
