Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6210403
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:09:10+00:00 2026-05-24T06:09:10+00:00

How do I rewrite this oracle query, in the case I have no rows

  • 0

How do I rewrite this oracle query, in the case I have no rows returned and want to hardcode a default value of ‘0’ for a count and the sysdate information?

My query now will give me this if there is no data:

 1* SELECT count(*) as MYCNT, timestamp FROM TESTDATA WHERE timestamp = to_char(sysdate-2, 'yyyymmdd') || '0000' group by timestamp
SQL> /

no rows selected

Here, I tried NVL, but not getting expected output:

1* select nvl(count(*), 0) as MYCNT, to_char(sysdate-2, 'yyyymmdd') || '0000' from TESTDATA WHERE timestamp = to_char(sysdate-2, 'yyyymmdd') || '0000' group by timestamp
SQL> /

no rows selected

Want to see something like this:

MYCNT    TIMESTMP
-----    --------
0        201107250000
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T06:09:10+00:00Added an answer on May 24, 2026 at 6:09 am

    The group by is preventing this from just working by defult.

    select count(*) ,  to_char(sysdate-2, 'yyyymmdd') || '0000' as timestamp 
    from dual where 1=0
    

    You can see this is the case by comparing the output to:

    select count(*) ,  to_char(sysdate-2, 'yyyymmdd') || '0000' as timestamp 
    from dual where 1=0
    group by  to_char(sysdate-2, 'yyyymmdd') || '0000' 
    

    Second version returns blank, first version returns 0 and the timestamp

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to rewrite this query so that if @UserName gets passed in a
I have this rewrite rule RewriteEngine On RewriteBase /location/ RewriteRule ^(.+)/?$ index.php?franchise=$1 Which is
How would i rewrite this rails query to run on Heroku (Portegres) @students =
I have this SQL that works fine. Want the my filter to return the
I want to rewrite this xslt piece in XSLT 1.0, which does not support
I want to rewrite this line without using jQuery so it can be applied
I have an Oracle table with data that looks like this: ID BATCH STATUS
We have an application (well, 3) which uses Oracle 9i, however this is being
On Oracle 10gR2, given the following query, it takes forever to run. This is
I have a SQL like this; (in Oracle SQL Developer ) SELECT A.HESAP_NO, A.TEKLIF_NO1

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.