To have greater compatibility with other software products when extracting data that includes NULL values, you can specify how NULL values appear when using the OUTPUT statement from Interactive SQL.
Prerequisites
You must be the owner of the database or have DBA authority.
Context and remarks
There are two ways to specify how NULL values appear when using the OUTPUT statement from Interactive SQL. Both options allow you to output a specific value in place of a NULL value.
the output_nulls option lets you specify the output value used by the OUTPUT statement
the IFNULL function lets you apply the output value to a particular instance or query
Execute a SET OPTION statement that changes the value of the output_nulls option. The following example changes the value that appears for NULL values to (unknown):
SET OPTION output_nulls = '(unknown)'; |
Click Tools » Options.
Click SQL Anywhere.
Click the Results tab.
In the Display Null Values As field, type Value.
Click OK.
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |