IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Pulling null records in a SQL


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vinuseba

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Fri Apr 11, 2014 11:23 am
Reply with quote

hi ,

The field VARA is declared as below in the DDL of TABLEA.

VARA CHARACTER(2) FOR MIXED DATA
WITH DEFAULT NULL

While using VARA in in an SQL do i need to give a condition specificaly in the where clause as "VARA is NULL" to get the null values in the output?

Because the result of below two quries is different.
QUERY-1
Select count(*) from TABLEA where VARA <> 'AB' ;

QUERY-2
Select count(*) from TABLEA where VARA <> 'AB' or VARA is null ;
Back to top
View user's profile Send private message
Pandora-Box

Global Moderator


Joined: 07 Sep 2006
Posts: 1592
Location: Andromeda Galaxy

PostPosted: Fri Apr 11, 2014 12:49 pm
Reply with quote

Is the requirement to get "only" NULL rows?
Back to top
View user's profile Send private message
vinuseba

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Fri Apr 11, 2014 12:52 pm
Reply with quote

no the requirement is to get all the rows(including nulls) expect VARA not equal to 'AB'
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Fri Apr 11, 2014 1:22 pm
Reply with quote

What are the values are you getting?

Also can you please show us the maked output of below query ?

Code:
Select VARA from TABLEA where VARA is null
FETCH FIRST 10 ROWS ONLY  ;


publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=%2Fcom.ibm.db2z9.doc.sqlref%2Fsrc%2Ftpc%2Fdb2z_castspecification.htm

publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=%2Fcom.ibm.db2z10.doc.sqlref%2Fsrc%2Ftpc%2Fdb2z_sql_createtable.htm

below are some link for references , see if that helps.
Back to top
View user's profile Send private message
vinuseba

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Fri Apr 11, 2014 1:43 pm
Reply with quote

Please find the output of the query below.

Query
Select VARA from TABLEA where VARA is null
FETCH FIRST 10 ROWS ONLY ;

Result:
VARA
-----
-
-
-
-
-
-
-
-
-
-
Back to top
View user's profile Send private message
GuyC

Senior Member


Joined: 11 Aug 2009
Posts: 1281
Location: Belgium

PostPosted: Fri Apr 11, 2014 1:46 pm
Reply with quote

Select VARA from TABLEA where VARA is distinct from 'AB'
Back to top
View user's profile Send private message
vinuseba

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Fri Apr 11, 2014 5:08 pm
Reply with quote

Select VARA from TABLEA where VARA is distinct from 'AB'
is meeting our requirement ; but my concern is if we donot give "VARA is NULL" condition in the where condition wont it pull the null records?
Back to top
View user's profile Send private message
chandan.inst

Active User


Joined: 03 Nov 2005
Posts: 275
Location: Mumbai

PostPosted: Fri Apr 11, 2014 5:21 pm
Reply with quote

It won't because you can not compare Null with any value.
So with
Code:
Select count(*) from TABLEA where VARA <> 'AB' ;


Db2 cant decide Null is not equal AB.

Search more in DB2 manuals on Null values you will get more details

Regards,
Chandan
Back to top
View user's profile Send private message
vinuseba

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Fri Apr 11, 2014 5:41 pm
Reply with quote

thank you all ...now I got it....
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Null values are considered in Total c... DFSORT/ICETOOL 6
Search our Forums:

Back to Top