解答

160

SQL文(クエリ)

SELECT
  name
  , birthday
FROM
  sample.customers
WHERE
  birthday IN(
    SELECT
      birthday
    FROM
      sample.customers
    GROUP BY
      birthday
    HAVING COUNT(*) > 1
  )
ORDER BY
  2

結果テーブル

結果テーブル

サポートページに戻る