Results 1 to 2 of 2

Thread: Select

  1. #1
    venki Guest

    Select

    HI,
    i want to find out any repeated values in one particular Field of the table..if so display those values..
    is there any solution for that.?
    Assist me
    Thanks in Advance
    Venki

  2. #2
    Jim Steiner Guest

    Select (reply)

    Try:
    select count(*), yourfield
    from yourtable
    group by yourfield
    having count(*) > 1


    ------------
    venki at 2/20/2002 3:17:51 AM

    HI,
    i want to find out any repeated values in one particular Field of the table..if so display those values..
    is there any solution for that.?
    Assist me
    Thanks in Advance
    Venki

Posting Permissions

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