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 8277417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T08:41:14+00:00 2026-06-08T08:41:14+00:00

I have a request, if operator types in nothing ,I will retrive all users.

  • 0

I have a request, if operator types in nothing ,I will retrive all users. but if operator multiple intput some usernames, I only retirve the users whos’ names are inputed, I am tring to use subquery like below

I am using subquery(table b) as IN condition to get users’ information from table a, and it is working well.

SELECT * FROM a WHERE UserName IN (SELECT UserName FROM b)

But, If table b has nothing, I need to select all Users from a, I don’t know how to do it.
Before I can do this only for one user, if typeInUserName = NULL, WHERE UserName = UserName will retirve all users for me.

SELECT * FROM a WHERE UserName = NVL(typeInUserName,UserName)
  • 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-08T08:41:15+00:00Added an answer on June 8, 2026 at 8:41 am
    create table a (username varchar2(20));
    
    insert into a values('gaurav');
    insert into a values('rahul');
    insert into a values('rohan');
    insert into a values('niharika');
    
    create table b (username varchar2(20));
    
     insert into b values('gaurav');
     insert into b values('rahul');
    

    case 1 :when there is not records in table B

    Delete from  b;
    
    WITH cnt_b as 
    (
     select count(*) cnt from b
    )
    select a.username from a ,cnt_b where  1= CASE WHEN cnt_b.cnt=0 THEN 1 ELSE 0 END
    UNION 
    select a.username from a,cnt_b,b where a.username =b.username and cnt_b.cnt>0;
    
    USERNAME            
    

    gaurav              
    niharika            
    rahul               
    rohan               
    
    4 rows selected.
    

    Case 2 When there are two matching records in table B

     insert into b values('gaurav');
     insert into b values('rahul');
    
    WITH cnt_b as 
    (
     select count(*) cnt from b
    )
    select a.username from a ,cnt_b where  1= CASE WHEN cnt_b.cnt=0 THEN 1 ELSE 0 END
    UNION 
    select a.username from a,cnt_b,b where a.username =b.username and cnt_b.cnt>0;
    
    
    USERNAME            
    --------------------
    gaurav              
    rahul               
    
    2 rows selected.
    

    Case3 When there are records in table B ,but no matching records.

    delete from  b
    
    insert into b values('rajat');
    insert into b values('garima');
    
    with cnt_b as 
    (
     select count(*) cnt from b
    )
    select a.username from a ,cnt_b where  1= CASE WHEN cnt_b.cnt=0 THEN 1 ELSE 0 END
    UNION 
    select a.username from a,cnt_b,b where a.username =b.username and cnt_b.cnt>0
    
    no rows selected.
    

    Cheers GS

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

Sidebar

Related Questions

I have 100 web servers and noticed that some of them have request filtering
I'm writing some user-JS for Opera. It reacts on a request that doesn't have
I have a query: SELECT ID FROM requests WHERE date <operator> <expression> I need
I have request where i need to change grid formatting on drop down action
I have linq request. I need get item.Title in select. how do this? var
I have a request controller that is getting out of hand, and I want
I have a request queue and a response queue. I would like to take
I have a request handler running in apache/mod_php which occasionally expands beyond the maximum
I have a request in from a client that would like one of their
I have ajax request that do 3 missions: Save Model (DB) Send Email Give

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.