greater than and less than equals to in sql?

Neo

how can i use greater than equal to and less than equal to instead of using between in SQL

I'm checking for date variable in sql

i tried like this.

Date between coalesce(@fromDate,Date) and coalesce(@toDate,Date) 

but if user does not enter any of date (fromDate or toDate)

so that I need to convert above condition in greater than equal to and less than equal to

please help in syntax in sql. thanks

gvee
IF @fromDate IS NULL
  BEGIN
    SET @fromDate = '1900-01-01';
  END;

IF @toDate IS NULL
  BEGIN
    SET @toDate = '2099-01-01';
  END;

SELECT things
FROM   table
WHERE  date_field BETWEEN @toDate AND @fromDate;

This code will essentially give you an arbitrarily large range to check which should give you reasonable performance and return all results (assuming that's what you want when neither value is supplied).

This code can be shortened to:

SELECT things
FROM   table
WHERE  date_field BETWEEN Coalesce(@toDate, '1900-01-01') AND Coalesce(@fromDate, '2099-01-01');

But I kept the verbose version to illustrate.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

greater than and less than equals to in sql?

From Dev

SQL Server - Dates, Greater than and Less than

From Dev

dynamically insert greater than > | less than < | equals to = operators into a query

From Dev

How to filter SQL by time (greater and less than)?

From Dev

Greater than or Less than equal to

From Dev

if greater than or less than and zero

From Dev

Having greater than or less than in hibernate named sql query

From Dev

Greater Than and Less Than Equal to in SQL Server inner join NEED

From Dev

NSPredicate issue with greater than equals

From Dev

filter table by greater than or equals to (>=)

From Dev

If value is greater than, less than and becomes greater than again

From Dev

If value is greater than, less than and becomes greater than again

From Dev

Use of greater than or equals(>=) and lesser than or equals(<=) in SQL SELECT statements and PDO

From Dev

Python Less/Greater than issue

From Dev

Creating a greater than but less than function in XML

From Dev

Strange Greater than or Less than Results

From Dev

Greater than, Less than string Lua (Lapis)

From Dev

Using '/' as greater than less than in Python?

From Dev

Javascript diamond? (Less than followed by greater than)

From Dev

Is there a greater than but less than function in python?

From Dev

Greater than and less than symbol in regular expressions

From Dev

AppleScript less than number or greater than number

From Dev

Regex that detects greater than ">" and less than "<" in a string

From Dev

Returning greater than and less than values in pandas

From Dev

Greater than and Less than Value SSRS 2008

From Dev

Greater than and less than symbol in regular expressions

From Dev

Strange Greater than or Less than Results

From Dev

Python greater than and less than operands not working?

From Dev

Use R switch for less than or greater than?

Related Related

  1. 1

    greater than and less than equals to in sql?

  2. 2

    SQL Server - Dates, Greater than and Less than

  3. 3

    dynamically insert greater than > | less than < | equals to = operators into a query

  4. 4

    How to filter SQL by time (greater and less than)?

  5. 5

    Greater than or Less than equal to

  6. 6

    if greater than or less than and zero

  7. 7

    Having greater than or less than in hibernate named sql query

  8. 8

    Greater Than and Less Than Equal to in SQL Server inner join NEED

  9. 9

    NSPredicate issue with greater than equals

  10. 10

    filter table by greater than or equals to (>=)

  11. 11

    If value is greater than, less than and becomes greater than again

  12. 12

    If value is greater than, less than and becomes greater than again

  13. 13

    Use of greater than or equals(>=) and lesser than or equals(<=) in SQL SELECT statements and PDO

  14. 14

    Python Less/Greater than issue

  15. 15

    Creating a greater than but less than function in XML

  16. 16

    Strange Greater than or Less than Results

  17. 17

    Greater than, Less than string Lua (Lapis)

  18. 18

    Using '/' as greater than less than in Python?

  19. 19

    Javascript diamond? (Less than followed by greater than)

  20. 20

    Is there a greater than but less than function in python?

  21. 21

    Greater than and less than symbol in regular expressions

  22. 22

    AppleScript less than number or greater than number

  23. 23

    Regex that detects greater than ">" and less than "<" in a string

  24. 24

    Returning greater than and less than values in pandas

  25. 25

    Greater than and Less than Value SSRS 2008

  26. 26

    Greater than and less than symbol in regular expressions

  27. 27

    Strange Greater than or Less than Results

  28. 28

    Python greater than and less than operands not working?

  29. 29

    Use R switch for less than or greater than?

HotTag

Archive