The mysql grouping query is very slow, and I can't even think about it.

    SELECT
    DB33,
    Stream,
    Coil,
    MAX(Time) AS time,
    `View`
    FROM
    result_video_szy
    GROUP BY
    DB33
   order by NULL

problem description:

   
  1.
  2.query
  3.order by NULL:mysqlsort
  4.       

   
   
   
Mar.03,2021

create an index for db33?


DB33 create an index. About how much data is queried.

Menu