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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:40:46+00:00 2026-05-13T06:40:46+00:00

I have two variables, one is called PaidThisMonth , and the other is called

  • 0

I have two variables, one is called PaidThisMonth, and the other is called OwedPast. They are both results of some subqueries in SQL. How can I select the smaller of the two and return it as a value titled PaidForPast?

The MIN function works on columns, not variables.

  • 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-13T06:40:46+00:00Added an answer on May 13, 2026 at 6:40 am

    Use Case:

       Select Case When @PaidThisMonth < @OwedPast 
                   Then @PaidThisMonth Else @OwedPast End PaidForPast
    

    As Inline table valued UDF

    CREATE FUNCTION Minimum
    (@Param1 Integer, @Param2 Integer)
    Returns Table As
    Return(Select Case When @Param1 < @Param2 
                       Then @Param1 Else @Param2 End MinValue)
    

    Usage:

    Select MinValue as PaidforPast 
    From dbo.Minimum(@PaidThisMonth, @OwedPast)
    

    ADDENDUM:
    This is probably best for when addressing only two possible values, if there are more than two, consider Craig’s answer using Values clause.

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

Sidebar

Related Questions

I have one Class called System it contains some variables and two arrays and
I have two variables. weekStartDate and startDate. they both hold essentially the same timestamp:
I have a DomainClass with two variables and the user can only set one
I have two images in my drawable folder, one called Red and the other
Let's say I have these two variables $number = 1; $word = one; and
I have two pages. First one we open with $_POST variables in its url,
In C++, if you have two variables a and b, you can do this
I have two models generated with generate scaffolding, one is a LogBook the other
I have three variables, one is called A = 2012, the second is called
I have two variables in a jquery code and if item.a not exist, it

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.