SELECT
LEFT(log_timestamp, 6) as month,
COUNT(*)
FROM logging
WHERE... |
10 years ago |
select LEFT(log_timestamp, 6) as month, count(*) from logging where... |
10 years ago |
select LEFT(log_timestamp, 6) as month, count(*) from logging where... |
10 years ago |