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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T15:06:20+00:00 2026-05-22T15:06:20+00:00

Is there a cross-database (at least SQL Server, Oracle, Postgre, MySQL, SQLite) way of

  • 0

Is there a cross-database (at least SQL Server, Oracle, Postgre, MySQL, SQLite) way of doing what I would do in T-SQL using

SELECT 1 WHERE EXISTS (SELECT * FROM Foo WHERE Bar = 'Quux')

It seems that this is not valid ANSI SQL syntax because there is no FROM clause. At present I am using COUNT(*) to do this, but I don’t think that’s optimal.

  • 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-22T15:06:21+00:00Added an answer on May 22, 2026 at 3:06 pm

    The subquery is unnecessary – use:

    SELECT DISTINCT 
           1 
      FROM Foo 
     WHERE Bar = 'Quux'
    

    A more complicated version, using aggregates & CASE expression:

    SELECT CASE
             WHEN COUNT(*) >= 1 THEN 1 
             ELSE 0
           END
      FROM Foo 
     WHERE Bar = 'Quux'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any particular way in which we can access the Web SQL Database
I'm using MS SQL Server 2008R2, but I believe this is database agnostic. I'm
Is there a (cross-platform) way to get a C FILE* handle from a C++
Is there a cross-platform way to list the processes running on one's computer through
Is there some reasonably cross platform way to create a thumbnail image given a
Are there any good, cross platform (SBCL and CLISP at the very least) easy
I'm creating a cross platform application using Swing and Netbeans (Group Layout). Is there
Whats the best/easiest GUI library out there for Ruby? I would prefer a cross-platform
In our last episode ( How I constructed a cross database query in MySQL
I was wondering what would be a good way to accomplish the following using

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.