Tagged Questions
The isnull tag has no wiki summary.
14
votes
4answers
25k views
Equivalent of SQL ISNULL in LINQ?
In SQL you can run a ISNULL(null,'') how would you do this in a linq query?
I have a join in this query:
var hht = from x in db.HandheldAssets
join a in db.HandheldDevInfos on x.AssetID ...
14
votes
5answers
23k views
C# equivalent of the IsNull() function in SQL Server
In SQL Server you can use the IsNull() function to check if a value is null, and if it is, return another value. Now I am wondering if there is anything similar in C#.
For example, I want to do ...
9
votes
7answers
184 views
is_null($x) vs $x === null in PHP [closed]
Possible Duplicate:
What's the difference between is_null($var) and ($var === null)?
PHP has two (that I know of, and three if you count isset()) methods to determine if a value is ...
5
votes
2answers
358 views
Stored procedure call with an ISNULL in the assignment. Invalid Syntax?
Above the call to this stored procedure is another call to a different stored procedure. The first procedure will assign something to @NewIdentifier if it needs to, otherwise I need to use the default ...
4
votes
3answers
173 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 ...
3
votes
5answers
142 views
IS NOT NULL and ISNULL( str, NULL ) in WHERE clause
I have three tables (simplified here):
recipients: recipientId, isGroup
users: userId, first name, last name
groups: groupid, groupname
I want to retreive the first name / last name if the ...
3
votes
4answers
369 views
Why IsNull is twice slow as coalesce (same query)?
We met a strange situation on SQL Server 2008 (SP1) - 10.0.2531.0 (X64) - Win2008 SP2 (X64).
Here is a one heavy query:
select t1.id, t2.id
from t1, t2
where
t1.id = t2.ext_id
and ...
3
votes
4answers
2k views
Finding null value in Dataset - DataRow.IsNull method vs ==DbNull.Value - c#
What are the benefits of using the c# method DataRow.IsNull to determine a null value over checking if the row equals DbNull.value?
if(ds.Tables[0].Rows[0].IsNull("ROWNAME")) {do stuff}
vs
...
2
votes
2answers
55 views
Error converting data type varchar to float - ISNULL related
Note: I read similar threads on SO but was of no help in this query.
I have reproduced the following code where is similar to my real problem. I have to use this syntax because it is already been ...
2
votes
3answers
82 views
ISNULL behaviour in sql server
As per my understanding IsNull Function checks the first value if its null or blank then it returns the next value.
SELECT ISNULL(1,getdate())
but the above statement is giving error. Can any one ...
2
votes
2answers
386 views
Entity Framework Defining Query + IsNull + Left Join = Way Too Slow
I have this SQL statement
select st.Column1, isnull(sot.SomeColumn, 0) as SomeColumn
from SomeTable st
left join SomeOtherTable sot
inside a <DefiningQuery> tag inside my Entity Framework ...
2
votes
1answer
308 views
Sargable queries using ISNULL in TSQL
I'm looking to prevent non-sargable expressions in my queries, which is the better way to check for a null condition?
AND c.Account IS NOT NULL
AND c.Account <> ''
or
AND ...
2
votes
1answer
426 views
SQL Server 2008 Optimize FULL JOIN with ISNULL statements
HI All
I was hoping someone could help me improve a query I have to run periodically. At the moment it takes more than 40 minutes to execute. It uses the full allocated memory during this time, but ...
2
votes
2answers
387 views
Write a SQL Query to replace values and include all the Dates
Well I have this -
Table DimDate- Date
Table Employee- Id,Name,Points,Date
Now the Employee table has points for everyday unless they did not come...so the Date does not have all the Dates ...
1
vote
2answers
68 views
Why do I have a NullReferenceException when i am using a IsNull condition?
I have to join 2 different datatable like with linq:
// let use Linq
var DateMarket = from p in IndexPrice.AsEnumerable()
join q in TickerPrice.AsEnumerable() on ...
1
vote
3answers
44 views
properly dealing with null database values in vb.net
I am looping thorugh a datatable and and printing each row to the console and I keep on getting a dbnull error. I inserted an if statement in my loop to try and catch it, but I can't seem to get it ...
1
vote
3answers
82 views
Checking MySQL NULL values with PHP
This is how my table looks like..
id col1 col2
---------------
1 a x
2 NULL y
3 NULL z
4 NULL t
col1 has a default value of NULL.
I want to use col1 data If col1 is not null, ...
1
vote
4answers
50 views
Null substitution in SQLite:
In Sybase and MSSqlServer TransactSQL, we have a function IsNull(columnName,valueForNull) to return a typed default value when a column value is null. How can I replicate this functionality in SQLite?
...
1
vote
5answers
123 views
SQL: ISNULL function with different type of parameters
In SQL Server, ISNULL() function has to same type of parameters.
check_expression
Is the expression to be checked for NULL. check_expression can be of
any type.
replacement_value
...
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
126 views
SQL Local Variable
I use SQL Server 2005 and I have a query like this :
INSERT INTO [subject] ([sch_id],
[subj_from],
[subj_to],
)
SELECT
CASE
WHEN (SELECT @sched = ...
1
vote
1answer
67 views
sql server 2008 return value getting shortened when using ISNULL and NULLIF
I have this select statement where I check whether phone number in null or empty and if they are then I would return 'No Phone Number is available'. Like this
SELECT
Name,
...
1
vote
1answer
128 views
Advantage Database Server (ADS) CIChar data type ISNULL problem
Unfortunately we are using the Advantage Database Server Torture Edition Version 8.1.
After I had finished my project, I heard that the data base is configured to be case sensitive. So I changed the ...
1
vote
1answer
198 views
Linq to Sql IsNull replacing NULL FK with existing FK
I need to transform an sql query to a Linq to SQL query, and i could'nt get the result what i expect:
I have 2 tables, Base, M tables
BaseOne
{
MID (FK) , points to M
MChildID(FK, ...
1
vote
2answers
279 views
SQL DB2 null calculation causing problems
I have the following SQL:
Select dmvndn "Vendor Number", IFNULL(sum(dmsls) / sum(dmprc), 0) "Calculation"
From MyFile
Group By dmvndn
However, when i run this, i am still getting null records in my ...
1
vote
2answers
196 views
Select statement with in ISNULL
I am writing a stored procedure and within this procedure I am using isNULL. If the value is null I want to use a select statement as the replacement value is this even possible?
IF ...
1
vote
6answers
267 views
!is_null() not working as expected
dispatch_address_postcode
isn't mandatory and it will still run even if it's blank:
if (!is_null($_POST['personal_info_first_name']) &&
!is_null($_POST['personal_info_surname']) ...
1
vote
1answer
95 views
Is this sql syntax correct?
Can i apply SUM() within an ISNULL().... Consider my following sql server select statement
SELECT e.Emp_Id,e.Identity_No,e.Emp_Name,case WHEN e.SalaryBasis=1
THEN 'Weekly' ELSE 'Monthly' end as ...
1
vote
2answers
211 views
Force a value of 0 for non-existing value
Group, I am going to try and explain this as best I can, and I hope it makes (some) sense. I am pulling data from a view I have created that tells me a "Sponsor's" customer types and how many of ...
1
vote
2answers
241 views
Can using isnull in a where statement cause problems with using indexes?
I have a query like the following:
SELECT t1.v3, t2.v2
FROM t1
INNER JOIN t2
ON t1.v1 = t2.v1
WHERE ISNULL(t1.DeleteFlag,'N') = 'N'
I have an index in place that I think should result in there ...
1
vote
2answers
707 views
How to use isnull type decision in linqdatasource orderby?
I have a sql stored procedure that uses isnull in the order by clause to order items by the latest reply date, or if that is null, by the posting date:
Example:
ORDER BY ...
1
vote
2answers
393 views
isNull(col, '')
How to write queries to do the followings in SubSonic/C#?
select isNull(col, someDefaultValue) from table
select x =
case
when (condition) then col1
else col2
end
from table
0
votes
0answers
34 views
responseXML returns null
Good morning!
I've been trying to parse a KML document as it is a XML document doing an http request but the response of it is null. I've read that maybe is because it doesn't have propper headings ...
0
votes
1answer
34 views
MySQL - search for NULL values
I've tested a weird query that involves me searching for non-existent records.
In a nutshell, I have 3 tables:
tbl_customers
tbl_customers_notes
tbl_customers_pipelines
Customers and Notes are ...
0
votes
1answer
59 views
is there a isnull or ifnull function in doctrine?
I am looking for a function in doctrine for converting null values to specified default values. So IsNull(A, B) should return B if A is null, A otherwice. Has doctrine such a function?
0
votes
3answers
48 views
ISNULL function within select command of formview
This is part of my select statement within an formview which works fine till it hits a null value during the update process.
(SELECT TOP 1 F.tel_id FROM TELEPHONE as F where F.tel_type_id = 3 AND ...
0
votes
1answer
140 views
SQL - Computed column using ISNULL, DATEDIFF and GETDATE
I'm using SQL Server MS.
I'm having trouble writing this script:
CREATE VIEW rental_view
AS SELECT
m.movie_id, movie_name, co.copy_id, f.format_id, format_name, cu.customer_id,
(first_name + ' ' ...
0
votes
2answers
40 views
how change empty result? mysql
SELECT 'id' FROM `table` WHERE `id` =
(select min(`id`) FROM `table` where
`id` < 1 and `ids` = 1)
id ids
1 1
2 1
5 1
6 1
Result:
id = ''
I need to ...
0
votes
3answers
43 views
ISNULL, SQL, Using a select statement as the second parameter
I don't know if this is possible in SQL or if I have to write a stored procedure but I'm trying to use the ISNULL function as below so that when the parameter @sku is null I'm using a select statement ...
0
votes
4answers
34 views
POSTed values will never be null?
I am required for an assignment to check if certain html form fields (type="text") assigned to variables are null. I'm finding that is_null() is not detecting variables to which empty fields are ...
0
votes
2answers
165 views
SQLite query to select columns from table if a particular column value is NULL
I have a sqlite db with 1 table and 4 columns in that table. One of these column is optional and may contain NULL values. I want to get values in other 3 columns if this column is null.
For example,
...
0
votes
2answers
78 views
Mysql join problem between 5tables
Sorry for my english, I'm from austria, but I couldn't find another nice q&a-board. :)
I have a very strange structured mysql-database.
First there is a table for users, for my example there are ...
0
votes
1answer
809 views
jQuery check if Cookie exists, if not create it
I cannot get this code to work I must be missing something pretty simple. I am trying to check to see if a Cookie exists, if it does {do nothing} if it doesn't {create it}. I am testing the cookie ...
0
votes
3answers
94 views
ISNULL usage with NULL database fields
I am trying to do something that should be fairly simple but ISNULL isn't doing what I thought it would.
Basically I have a stored procedure and I am expecting either PARAM1 OR PARAM2 to have a ...
0
votes
5answers
364 views
SQL Server NULL value with inner join
I am using C# and SQL Server.
Take a look at the following SQL:
SELECT table1.id, table1.description, table2.name, table2.surname
FROM table1
INNER JOIN table2 ON table1.EmpID = table2.EmpID
...
0
votes
1answer
142 views
AVG and ISNULL in mysql
I need to achieve some thing like this
SELECT ISNULL(AVG(rating),0) FROM videorating vr WHERE vr.VideoId=11229;
If average is empty/null then I should get 0 as rating.
I am trying to optimize this ...
0
votes
1answer
229 views
IsNull inside Sum statement in Linq to Sql
I'm trying to change some SQL into Linq-to-Sql, however I have the following line in SQL that I'm not sure how to convert:
SUM(Quantity * IsNull(ExchangeRate,1) * Factor )
So I've so far written ...
0
votes
3answers
387 views
ISNULL equivalent for empty fields
Is there something like ISNULL() OR COALESCE() but not that checks for null value but for an empty value.
for example:
SELECT cu.last_name, cu.first_name, cu.email, hu.email FROM
(SELECT ...
0
votes
4answers
174 views
NullDisplayText in markup vs ISNULL(field, 0) in SQL?
Which approach is better to use:
BoundField.NullDisplayText isn't set. NULL-case is foreseen in SQL query, i.e. SELECT ISNULL(amount, 0) FROM table
or
BoundField.NullDisplayText is set, e.g. ...
0
votes
1answer
1k views
DataTable.Select Behaves Strangely Using ISNULL Operator on NULL DateTime Column
I have a DataTable with a DateTime column, "DateCol", that can be DBNull. The DataTable has one row in it with a NULL value in this column.
I am trying to query rows that have either DBNull value in ...