sql >> Databáze >  >> RDS >> Mysql

Vyberte všechny sloupce větší než nějaká hodnota

Vaše datová struktura není normalizovaná. Ale pokud chcete jít touto cestou, použijte:

select sub.student
FROM (
  select t.timestamp,
    t.Name,
    t.Total,
    c.col AS student,
    case c.col
      when 'Student1' then Student1
      when 'Student2' then Student2
      when 'Student3' then Student3
      -- ...
    end as d
  from mytable t
  cross join
  (
    select 'Student1' as col
    union all select 'Student2'
    union all select 'Student3'
    -- ...
  ) c
) AS sub
WHERE sub.timestamp = '20150911'
  AND sub.d > 0;
  -- sub.d = 'NA'
  -- sub.d = 0

SqlFiddleDemo

Výstup:

╔══════════╗
║ student  ║
╠══════════╣
║ Student1 ║
║ Student2 ║
╚══════════╝

Pokud chcete výsledek oddělený čárkami, použijte:

select GROUP_CONCAT(sub.student ORDER BY sub.student) AS result

SqlFiddleDemo2

Výstup:

╔═══════════════════╗
║       result      ║
╠═══════════════════╣
║ Student1,Student2 ║
╚═══════════════════╝



  1. Levé spojení nebo výběr z více tabulek pomocí čárky (,)

  2. Použití NoSQL databáze přes MySQL

  3. Java - Jak získat název sloupce v sadě výsledků

  4. Problém s výběrem jednoho náhodného řádku z tabulky MySQL