SQL select distinct substring where like muddleup howto

后端 未结 4 1954
情书的邮戳
情书的邮戳 2021-01-02 17:47

I\'ve got a table with a field that is similar to this:

ANIMAL
========
FISH 54
FISH 30
DOG 12
CAT 65
CAT 09
BIRD 10
FISH 31
DOG 10

The fie

4条回答
  •  礼貌的吻别
    2021-01-02 18:09

    Why not just

    SELECT id, animal, value FROM table GROUP BY animal, id HAVING id = MIN(id)
    

    That should get you a list of the animals in the table, each animal with the first entered value.

    If you don't need so select the value, then just do:

    SELECT animal FROM table GROUP BY animal

提交回复
热议问题