How do you check for a null value in a db2 column?

Answers were Sorted based on User's Feedback



How do you check for a null value in a db2 column?..

Answer / guest

You use a null indicator on the colunm and if the null
indicator = -1 then the column has a null value.

Is This Answer Correct ?    32 Yes 0 No

How do you check for a null value in a db2 column?..

Answer / angoca

By querying the catalog
select nulls
from syscat.columns
where tabschema like 'XX%'
and tabname = 'YY'
and colname = 'ZZ'"

Or with the describe command
db2 describe table ZZ.YY

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More DB2 Interview Questions

Select empno, sal from emptbl where empno < 101.By this query can we fetch first 100 recs? where empno is primary key.It won't throw -811 error? if it wont,then what is use of cursor technique while fetching first 100 recs. Please need more clarification.

2 Answers  


What is a db2 tablespace?

0 Answers  


If I have a view which is a join of two or more tables, can this view be updateable?

0 Answers  


What is the information associated with sysibm.syslinks table?

0 Answers  


What is dbrm in db2 database?

0 Answers  


How many databases are there?

0 Answers  


What is the difference between SYNONYM and ALIAS?

6 Answers   TCS,


How can you count the number of rows from a table tab?

0 Answers  


what is the difference between where clause and having clause

2 Answers   IBM,


what is REORG? what is the use?

4 Answers  


what is utility for parm lib

0 Answers   IBM,


What is drop table?

0 Answers  


Categories