Results 1 to 4 of 4

Thread: Need Help (SQL)

  1. #1
    David Guest

    Need Help (SQL)

    "select title,txt from tbl_txt where title='%value%' or txt='%value%';"

    I'd like to sort the result by title then by txt. How to do ?

    Thank you.

  2. #2
    MAK Guest

    Need Help (SQL) (reply)


    select title,txt from tbl_txt where title='%value%' or txt='%value%' order by title,txt


    ------------
    David at 6/15/01 8:53:33 AM

    "select title,txt from tbl_txt where title='%value%' or txt='%value%';"

    I'd like to sort the result by title then by txt. How to do ?

    Thank you.

  3. #3
    Mark Guest

    Need Help (SQL) (reply)

    David,

    Here is the complete query.

    SELECT title
    ,text
    FROM tbl_txt
    WHERE title='%value%'
    AND txt ='%value%'
    ORDER BY title
    ,txt

    This will give you the results that you want in the correct order.
    Hope this helps.

    Mark


    ------------
    David at 6/15/01 8:53:33 AM

    "select title,txt from tbl_txt where title='%value%' or txt='%value%';"

    I'd like to sort the result by title then by txt. How to do ?

    Thank you.

  4. #4
    Ananth Guest

    Need Help (SQL) (reply)

    If you're using the % wildcard, you should use LIKE, not =

    otherwise your result set will be empty.




    ------------
    David at 6/15/01 8:53:33 AM

    "select title,txt from tbl_txt where title='%value%' or txt='%value%';"

    I'd like to sort the result by title then by txt. How to do ?

    Thank you.

Posting Permissions

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