SitePoint Sponsor

User Tag List

Results 1 to 5 of 5

Thread: Where $val between col1 and col2?

  1. #1
    SitePoint Enthusiast
    Join Date
    Apr 2012
    Posts
    64
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Where $val between col1 and col2?

    Is this a valid statement? "SELECT * FROM Table WHERE '$Value' BETWEEN Column1 AND Column2", with the columns as doubles?

  2. #2
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,513
    Mentioned
    35 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by biglittle View Post
    Is this a valid statement? "SELECT * FROM Table WHERE '$Value' BETWEEN Column1 AND Column2", with the columns as doubles?
    the quotes are unnecessary, since DOUBLE is not a string datatype

    otherwise, it looks fine
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  3. #3
    Always A Novice bronze trophy
    K. Wolfe's Avatar
    Join Date
    Nov 2003
    Location
    Columbus, OH
    Posts
    1,868
    Mentioned
    29 Post(s)
    Tagged
    0 Thread(s)
    Perhaps you should provide the actual PHP code if you are having any problems with it so that we can help you out.
    <?php
    //Kyle Wolfe
    echo devBlog("My Dev Notes");

  4. #4
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,513
    Mentioned
    35 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by K. Wolfe View Post
    Perhaps you should provide the actual PHP code ...
    in the php forum, eh
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  5. #5
    SitePoint Enthusiast
    Join Date
    Apr 2012
    Posts
    64
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I got it working; I just had a typo in my variable :S

    Thanks for the replies everyone!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •