Oracle NVL wild card search -


i have search page null values use nvl null conditions. 1 fiels have wildcard search nvl possibel wildcard search eg nvl(null,%name%)?

you can use nvl in case "subfunction"
if want null-s results this:

select    your_table   nvl(column_can_be_null, 'substring_you_search_for')        '%substring_you_search_for%' 

Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -