All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0601_0700.s0619_biggest_single_number.script.sql Maven / Gradle / Ivy

There is a newer version: 1.24
Show newest version
# Write your MySQL query statement below
# #Easy #Database #2023_06_05_Time_779_ms_(66.08%)_Space_0B_(100.00%)
SELECT MAX(num) AS num
FROM (SELECT num, COUNT(num)
      FROM MyNumbers
      GROUP BY num
      HAVING COUNT(num) = 1) t




© 2015 - 2024 Weber Informatics LLC | Privacy Policy