The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
4answers
46 views

How to check in PHP if a variable is set and is_null

This question is merely for information only. I was wondering if there is a way to check if a variable is_set and if so check if it is set to null Based on the PHP type comparison tables doesn't ...
0
votes
2answers
25 views

ISNULL syntax in SQL pivot

I have the following bit of code SELECT @columns = COALESCE(@columns + ', ','') + QUOTENAME(PERIOD) FROM (SELECT DISTINCT PERIOD FROM @p_l_summary) AS b ORDER BY b.PERIOD which works perfectly ...
0
votes
3answers
35 views

JSpinner getting null value

I want to take null values when my JSpinner is empty. But it returns 0.0 when I call getValue() function. public JFormattedTextField getTextField(JSpinner spinner) { JComponent editor = ...
1
vote
1answer
31 views

left join - infinite loop (never returns)

I have a table and one complex view with following row counts table cpi - number of rows = 74559 view most_recent - number of rows = 69832 then i tried to do the following query SELECT DISTINCT TOP ...
2
votes
2answers
38 views

Django: filtering queryset by 'field__isnull=True' or 'field=None'?

I have to filter a queryset by a dynamic value (which can be None): may I simply write: filtered_queryset = queryset.filter(field=value) or shall I check for None: if value is None: ...
1
vote
1answer
39 views

DLookup In Access 2010 using IsNull and multiple criteria

Essentially I am trying to find if a user is currently logged in before making a new row with TimeIn, but with the code as it is written, a user can check in multiple times without checking out ...
0
votes
2answers
68 views

within substring method how to use Isnull()

In my some of the columns have NULL value. So I can't achive other informations(my other columns) get NULL value. So I use Isnull. But I logged where I put Isnull() In my following code. My Code is ...
1
vote
3answers
28 views

Query not working when looking for null values on the where clause

I got this query that works perfectly: SELECT FOLDER.folderid, FOLDER.foldername FROM FOLDER INNER JOIN COLLABORATORS ON COLLABORATORS.folderid = FOLDER.folderid WHERE COLLABORATORS.userid = 23 But ...
0
votes
1answer
28 views

Is there a way to test for a null value in this expression within a bat file?

Is there a way to test for a null value in this expression within a bat file? FOR /F %%f IN ('C:\Windows\System32\inetsrv\appcmd list site /text:name /bindings:') DO rmdir /s/q "D:\Websites\%%f" ...
1
vote
2answers
181 views

Checking and showing null value in MS Access Query

I'm trying to write an SQL query to show the sum of every category. The problem is that I need the sum of every category and even if the sum is zero it should still display the results. I am doing ...
1
vote
2answers
76 views

Comparing with null by converting value to a constant with isnull

One of our programmers tends to use isnull in MS SQL to compare with NULLs. That is instead of writing Where ColumnName Is Null he writes Where IsNull(ColumnName,0)=0 I think that the optimizer will ...
0
votes
1answer
90 views

syntax error SQL Access Nested IIF ISNULL statements

I'm getting a syntax error, I've changed it multiple times, re-typed it and tried to draw a map even. Now after my head is about to expload, out of desperation I'm turning to someone who has an eye ...
1
vote
1answer
90 views

way ISNULL does not show colums if there is null?

I have query SELECT [Category] = ISNULL ( c.Category,'0'), COUNT (cl.ClientID) as [3 Mo Clients] FROM Category c LEFT JOIN clients cl ON cl.CategCode = c.CategCode WHERE agencyid =2 GROUP ...
0
votes
2answers
90 views

How do I dynamically count all rows that have a null value across all tables and columns in a database schema

I need to create an exception report that looks over all the tables in a specific schema, which then counts across columns and rows and lists how many entries per column there were that contained a ...
0
votes
3answers
47 views

SQL List Products that are Not Already Ordered

I have a situation where a LEFT JOIN is not going far enough in what I need to accomplish. I have a product table (Products with columns ItemID, ProductName, Price) and an order table (Orders with ...
0
votes
3answers
59 views

Left join, ISNULL, IFNULL don't work

CREATE TABLE IF NOT EXISTS `tblflash` ( `FID` int(11) NOT NULL AUTO_INCREMENT, `fname` text COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`FID`) ) CREATE TABLE IF NOT EXISTS `tblcount` ( ...
1
vote
2answers
81 views

Hibernate criterion to restrict property to set of possibilities including null

I'm still trying to understand how the Restrictions.in("propName", ...) operator of the Hibernate Criteria object works. Let's say I have an entity IceCream with nullable property flavour and I want ...
0
votes
1answer
114 views

MySQL query: All data from one table and second table only if it exists

I have two tables in my database. The one has is a list (table b in the code example) of profiles. The second is a log table (table a in the code example) with records of when the profile was updated. ...
1
vote
1answer
209 views

Replace Left Outer Join Null values with a string

I want to show the null values returned from the left outer join with a string " UnRegistered". When the value is an integer or a bool, I just write: ISNULL(ReturnedValue, 0) AS ReturnedValue ...
0
votes
2answers
38 views

Include null results in group_concat

I have two tables like this profile_answers +---------+------------+ | id | class_name | +---------+------------+ | 1 | Class 1 | | 2 | Class 2 | | 3 | Class 1 | ...
0
votes
2answers
157 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 ...
2
votes
2answers
92 views

Looking to use the ISNULL function to check if an image is active else select max

If an image is marked as active and a person clicks on the link they should be taken to the active image otherwise they should be taken to the (MAX) most recent image uploaded. My first select works ...
1
vote
1answer
37 views

PHP function to determine is all elements in an array are null

I want to know if there is a built-in, or better method to test if all elements of an array are null. Here is my (working) solution: <?php function cr_isnull($data_array){ ...
0
votes
3answers
187 views

mysql if not null, 0 or “”

SELECT * FROM table WHERE id IN ('21') AND (content_id IS NULL OR content_id = 0 OR content_id = '') Is there a shorter way of writing this condition. I have a int() column that could be ...
0
votes
1answer
82 views

How do I check whether a field contains null value? - pymongo

Sometimes my document has a field that has null values. How do I check whether the value inside a field is a null string? How do I iterate through all documents and delete the field of the document ...
1
vote
2answers
66 views

return values as null

I am using the following SQL statement and I want it to to return null values if there are not any values hence "Coalesce", I have one problem though - it doesn't work :) I think maybe because the ...
1
vote
3answers
107 views

C bufferoverflow prevention, safe upper bound check in multidimensional arrays

Consider this piece of C code: int main(int argc, char *argv[]) { char ***map = malloc(sizeof(char *) * 4); char *a[] = { "hello", "world" }; char *b[] = { "foo", "bar" }; ...
-2
votes
2answers
97 views

Incorporating ISNULL into a CASE expression

I have the following CASE expression and the ISNULL portion is not registering: CASE WHEN IsNull(2010) THEN 0 END) * CASE WHEN IsNumeric([Dur_In_Hours]) = 1 THEN CAST([Dur_In_Hours] AS FLOAT) ...
0
votes
3answers
90 views

Is there a null handler to string method at c#

I am able to assign a variable like below: if (Session["myVariable"] != null) { string variAble = Session["myVariable"].ToString(); } Is there a method which checks whether an object is null or ...
1
vote
5answers
483 views

Excluding a Null value returns 0 rows in a sub query

I'm trying to clean up some data in SQL server and add a foreign key between the two tables. I have a large quantity of orphaned rows in one of the tables that I would like to delete. I don't ...
1
vote
1answer
80 views

Comparing Null to Null in merge statement

Which statement is perfect or better when dealing with billion of records for comparing NULL's in merge statement. I have tried with SET ANSI_NULLS OFF but that didn't work in merge statement. Here is ...
1
vote
4answers
147 views

MySQL - Selecting rows with null columns

How can I select any row that contains empty or null column? I'm trying to run a check on my table, in which I want to see if any of my rows contain a column that doesn't hold a value.. example ...
2
votes
3answers
124 views

How to Replace IS NULL and != with a Built-in TSQL Function?

Is there any simple function in TSQL that could replace the below tsql? SELECT * FROM Users WHERE (Username IS NULL OR Username != @username) I could write the below but that's not bullet proof due ...
1
vote
2answers
273 views

sql server null value in where clause

There is one table which is having only one row with 4 date columns ,initially all date value are null so if Exists(select 1 from rep_master where pacdt_1=null OR pacdt_2=null OR pacdt_3=null OR ...
1
vote
2answers
101 views

HTTP request that throws a null exception

I have an activity that create a new instance of connection. like this: public class myActivity extends Activity { TextView tv; ProgressDialog dialog = null; @Override public void onCreate(Bundle ...
1
vote
0answers
151 views

Oracle dbms_xmldom.ISNULL what's the difference in 10G and 11G?

For the code below, in Oracle 10g, it says the node is empty, in 11g, it's not empty. There is a newline character between in side . If there is a space inside, the result is the same for both ...
0
votes
1answer
132 views

how to check that is null?

I have the following code in aspx file. I would like to display a message when my query returns 0 rows or null. How can I check this correct since my example does not catch null values. ...
1
vote
2answers
393 views

VB linq to sql isnull

I want make this in linq to sql select isnull(x.COD, '1') as 'NCOD' from table x I have tried this. From x In table select NCOD = x.COD ?? '1'; I'm using LINQPad 4 and VB Expression. but LINQPAd ...
0
votes
4answers
71 views

Checking if a variable is null [duplicate]

Possible Duplicate: is_null($x) vs $x === null in PHP In the following context !== null, !is_null() and isset() all produce the same result: $foo = null; function foo() { if ...
2
votes
4answers
139 views

How to make a IsNull() method

I'm trying to make a method similar to .ToString() that checks whether the object is null or not. I just done know how to make it accessible without calling the class public class ObjectExtensions { ...
0
votes
1answer
68 views

in splunk search How to get all instances that has a field without any value

This is the line in my log file.I want to get all searchTerms that do not have a value for PAMapped 2012-10-29 11:20:21,711 - searchTerm=speeding&location=Soperton%2C+GA&PAMapped= This ...
0
votes
0answers
183 views

checking null in mysql stored procedure

I write this code to generate auto increment code. This is my code so far: DELIMITER $$ DROP PROCEDURE IF EXISTS `dvd_rent`.`coba`$$ CREATE DEFINER=`dvd`@`localhost` PROCEDURE `coba`() BEGIN ...
1
vote
2answers
347 views

SQLITE (fmdb) select where x is null not working

I'm using FMDB on iOS, attempting to query a table with a statement such as, select * from test where foo isNull In the sqlite C API, this ends up binding to null using this API, int ...
0
votes
1answer
295 views

Argument matching parameter item cannot convert from DBNull to ListViewSubitem

Dim dr As SqlDataReader = cmd.ExecuteReader Me.ListView1.Items.Clear() Do While dr.Read With Me.ListView1 .Items.Add(dr(0)) With .Items(.Items.Count - ...
-2
votes
1answer
96 views

What is wrong with my code? (Update next column if previous column is not null)

I recently started working with PHP and MySQL and I have written a code to insert a variable into a MySQL column and if this column is already filled (Not NULL) that it would then continue on and try ...
0
votes
3answers
533 views

SQL check if the value of some column is null inside a where statement and if so set it to some value

I have this SQL query SELECT * FROM ##tempt WHERE ( minstock <= 0 AND numitems - backorder - cstock >= 1 ) OR ( minstock >= 1 AND numitems - backorder + ...
0
votes
1answer
143 views

default value for column in SQL view

I have an SQL view vith many columns. ID (land parcel ID) ex : 7465-85-7468 Building (ID of a specific building if needed) ex : 102 Room (ID of a specific room if needed) ex : 0023 I have an ID for ...
3
votes
0answers
95 views

.? operator theoretically possible in java? [closed]

I know Java doesn't support operator overloading, but it seems there are a few operators in other languages that could potentially benefit Java. Probably my favorite example is the .? operator. ...
2
votes
5answers
549 views

How do I traverse a JavaScript object and check for nulls?

Let's say I have a JavaScript object like: var obj = {}; obj.computers = {}; obj.computers.favorite = "Commodore 64"; obj.computers.popular = "Apple"; Now, I can easily check for null like: if(obj ...
1
vote
4answers
140 views

Oracle no results, small query

I am having trouble with some sql. When I run the following query: Select * from teleapp; I get TONS of results. Resulst which include a column (called cashwithappyn) that has TONS of empty or null ...

1 2 3 4