Ask a Question related to Microsoft SQL / MS SQL Server, Design and Development.

  1. #1

    Default Re: counting duplicates

    Jane,

    SELECT field1,count(field1) 'Counter'
    FROM <tgablename>
    GROUP BY field1

    --
    Dinesh.
    SQL Server FAQ at
    [url]http://www.tkdinesh.com[/url]

    "Jane K." <Jane@123.com> wrote in message
    news:00ea01c33f24$e5155960$a301280a@phx.gbl...
    > How can I set up a counter so that whenever there is a
    > duplicate records, the counter will increase by one. In
    > other words, I would like to find out how to make the list
    > looks like this:
    >
    > Field 1: Counter:
    > A 1
    > B 1
    > C 1
    > C 2
    > D 1
    > E 1
    >
    > Thank you in advance to answer my question.
    >
    >
    >

    Dinesh.T.K Guest

  2. Similar Questions and Discussions

    1. Find duplicates
      Hey all, I want to give the user a dialog where they can find pairs of duplicate entries in the database and resolve these down to a single...
    2. SQL Duplicates
      Hi all, I'm facing the next problem: I've got a table like this: Name Size Total Martens 200 2 Martens 300 ...
    3. checking duplicates
      Hi all, i'm trying to figure out how I can check for duplicates entries in an array and remove the duplicate. Example: 23,23,39,40,44,44 should...
    4. Eliminating duplicates
      Hi, I have a view with the following columns: member_rating_id ,rating_table_id ,member_id ,screen_name ,rating_value ,number_won...
    5. No Duplicates
      Is there a way so you make filemaker not accept any duplicate enteries into a certian fields ie; UserName: <field> Is there a way to make it...
  3. #2

    Default Re: counting duplicates

    Hi

    You don't give the DDL for the table, but if you had a separate Unique Index
    or Primary Key field(s) say PKFld the following sql may work (untested)

    SELECT b.Field1, ( SELECT COUNT(*) FROM MyTable A
    WHERE a.PkFld <= b.PKFld AND a.Field1 =
    b.Field1 ) AS Counter
    FROM MyTable B
    Order by b.Field1, b.PkFld

    John


    "Jane K." <Jane@123.com> wrote in message
    news:00ea01c33f24$e5155960$a301280a@phx.gbl...
    > How can I set up a counter so that whenever there is a
    > duplicate records, the counter will increase by one. In
    > other words, I would like to find out how to make the list
    > looks like this:
    >
    > Field 1: Counter:
    > A 1
    > B 1
    > C 1
    > C 2
    > D 1
    > E 1
    >
    > Thank you in advance to answer my question.
    >
    >
    >

    John Bell Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139