0
votes
3answers
48 views
ISNULL Date month
Hi
I have two dropdownlists, one with months and the other one with year. The user selects the submit month and year for the items they want to retrieve. In database the date is entered in full eg. …
0
votes
2answers
33 views
Computed bit column that returns whether another column is null
I try to have this computed column:
CREATE TABLE dbo.Item
(
ItemId int NOT NULL IDENTITY (1, 1),
SpecialItemId int NULL,
--I tried this
IsSpecialItem AS ISNULL(SpecialItemId, 0) > …
0
votes
1answer
46 views
SQL - MS ACCESS - Show Cells with NULL value with 0
Hi, I tried to write a query in access.
My aim is;
To get results of how many surgeries are done in one day.
Problem is;
Result are giving me dates and how many surgeries are done but days without …
0
votes
2answers
56 views
isnull(email,’’) = ‘’ is NOT interpreted by it self as (email is null or email = ‘’)?
Hi, as a fact of performance which one is better? Is there a difference between the actual 3 three versions of sql-server (2000 / 2005 / 2008)?
1
vote
2answers
63 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 …
0
votes
2answers
43 views
is it possible to get a class return true in is_null?
I am building some kind of a proxy pattern class for lazyloading sql queries.
the proxy pattern uses __call, __get and __set for relaying calls on its object, but sometimes there is no object, if the …
0
votes
3answers
830 views
SQL Server Check for IsNull and for Zero
I have the following:
set @SomeVariable = @AnotherVariable/isnull(@VariableEqualToZero,1) - 1
If @VariableEqualToZero is null it substitutes the 1. I need it to substitute 1 if …
0
votes
0answers
49 views
Why doesn’t COALESCE work with RowFilter?
Hi. I'm developing a small application in WPF. I have a ListBox named NameListBox whose ItemsSource property is set to a DataView, and thus displays a list of customer names. The name is composed of 3 …
0
votes
4answers
303 views
SQL date type range not according to spec?
According to MSDN the range for date datatype is January 1, 1753, through December 31, 9999
In SQL2005 the following is interesting:
declare @date as datetime
SET @date = '1/1/1901 12:00:00 AM'
…
0
votes
1answer
2k views
Crystal Reports formula: IsNull + Iif
There are hints of the answer to this question here and there on this site, but I'm asking a slightly different answer.
Where does Crystal Reports document that this syntax does not work?
…
6
votes
4answers
5k views
C# equivalent of sql server’s IsNull() function
In sql server you can use the IsNull funtion to check if a value is null. I am wondering if there is anything similar in C#, rather than manually checking:
For eg:
myNewValue = IsNull(myValue, new …
0
votes
3answers
1k views
ISNULL not working in TSQL Select
I have a TSQL SELECT that can return a null. I tried using ISNULL to replace it with 0 but for some reason it is not working. The table selecting from has the following columns:
storeID --> int
…
3
votes
3answers
3k views
LINQ ISNULL
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 …
0
votes
2answers
129 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
