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

  • Home
  • SEARCH
  • 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 8577381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:08:49+00:00 2026-06-11T20:08:49+00:00

I have a SQL query in which I am passing sysdate to the query

  • 0

I have a SQL query in which I am passing sysdate to the query problem is that when there is no matching date in table with sysdate then it don’t shows the zero even if there is nvl applied
here is my query

select * from molasses
where trunc(trn_dte) = trunc(sysdate)

But it show data only when current date is present in table but I want to show zero if no data found in table.please help me to do this in oracle 10 g. Because some times the situation is like above and I have to display zero when no data found

  • 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-06-11T20:08:50+00:00Added an answer on June 11, 2026 at 8:08 pm

    This is weird and I wouldn’t use it, it’s more of a hack:

    SELECT col1, col2, ..., colN              --- numeric columns
    FROM molasses
    WHERE trunc(trn_dte) = trunc(sysdate)
    
    UNION ALL
    
    SELECT 0, 0, ..., 0
    FROM dual
    WHERE NOT EXISTS
          ( SELECT *
            FROM molasses
             WHERE trunc(trn_dte) = trunc(sysdate)
          ) ;
    

    One only wonders what the application/user will understand when there is exactly one row in the table and all the values are zero.


    I think this would work, too:

    SELECT m.col1, m.col2, ..., m.colN              --- numeric columns
    FROM dual LEFT JOIN molasses m
      ON trunc(m.trn_dte) = trunc(sysdate) ;
    

    and show Nulls instead of (the wanted) 0s. Using the COALESCE() function could easily fix that, as well.

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

Sidebar

Related Questions

I have a T-SQL query as below which queries a table holding the search
Can we have a SQL query which will basically help in viewing table and
I have a SQL query in which I will be passing dd/mm/yyyy but the
I have a sql query which looks like this - NSString *createSQL = @SELECT
Right now I have this SQL query which is valid but always times out:
using php, i have a sql query which works fine, dateentry only has the
I have a SQL Server query which runs just fine -- until I add
In my Java code I have embedded a SQL query which fetches data from
I have following somewhat complex sql query which has horrible performance, 'certainly' due to
i've got a SQL query which returns multiple rows, and i have : $data

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.