SELECT status, COUNT(*) FROM mcp_log GROUP BY status
success
OK
Clean Content
TestQueryErwartungStatus
Simple SELECT`SELECT 1 as test`successOK
SELECT with columns`SELECT id, status FROM mcp_log`successOK
SELECT with WHERE`SELECT * FROM mcp_log WHERE status = 'success'`successOK
SELECT with ORDER BY`SELECT * FROM mcp_log ORDER BY id DESC`successOK
SELECT with COUNT`SELECT COUNT(*) as total FROM mcp_log`successOK
SELECT with GROUP BY`SELECT status, COUNT(*) FROM mcp_log GROUP BY status`successOK