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.30
Show newest version
# Write your MySQL query statement below
# #Easy #Database #2023_05_20_Time_656_ms_(90.69%)_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