From 98eabce01ffcfea2cc856f6db735d906576cd406 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Tue, 14 Apr 2026 22:51:48 +0700 Subject: [PATCH] =?UTF-8?q?tweak:=20reduce=20Long=20An=20kh=E1=BB=91i=20A?= =?UTF-8?q?=20preset=20from=20top=20100=20to=20top=2010?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/custom-query.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/custom-query.jsx b/src/components/custom-query.jsx index a669a6d..8bf754f 100644 --- a/src/components/custom-query.jsx +++ b/src/components/custom-query.jsx @@ -43,13 +43,13 @@ WHERE so_bao_danh LIKE '49%' AND toan IS NOT NULL ORDER BY toan DESC LIMIT 10`, }, { - label: "Top 100 khối A - Long An", + label: "Top 10 khối A - Long An", sql: `SELECT so_bao_danh, ho_ten, toan, vat_ly, hoa_hoc, ROUND(toan + vat_ly + hoa_hoc, 2) AS tong_khoi_a FROM student WHERE so_bao_danh LIKE '49%' AND toan IS NOT NULL AND vat_ly IS NOT NULL AND hoa_hoc IS NOT NULL -ORDER BY tong_khoi_a DESC LIMIT 100`, +ORDER BY tong_khoi_a DESC LIMIT 10`, }, ], },