SELECT
YEAR(STR_TO_DATE(rev_timestamp, '%Y%m%d%H%i%s')) AS year,
... |
1 month ago |
select extract(MONTH FROM r.rev_timestamp),count(u.user_id)
FROM revision... |
1 month ago |
select count(u.user_id)
FROM revision r
JOIN actor a ON r.rev_actor =... |
1 month ago |
select extract(MONTH from r.rev_timestamp),count(r.rev_id)
FROM revision... |
1 month ago |
select month(r.rev_timestamp),count(r.rev_id)
FROM revision r
JOIN actor a... |
1 month ago |
select month(r.rev_timestamp),count(r.rev_id)
FROM revision r
JOIN actor a... |
1 month ago |
SELECT MONTH(r.rev_timestamp) AS month, COUNT(DISTINCT u.user_id) AS... |
1 month ago |
SELECT MONTH(r.rev_timestamp) AS month, COUNT(u.user_id) AS... |
1 month ago |
SELECT MONTH(r.rev_timestamp) AS month, COUNT(u.user_id) AS... |
1 month ago |
SELECT MONTH(r.rev_timestamp) AS month, COUNT(u.user_id) AS... |
1 month ago |
SELECT MONTH(r.rev_timestamp) AS month, COUNT(u.user_id) AS... |
1 month ago |
SELECT MONTH(r.rev_timestamp) AS month, COUNT(DISTINCT u.user_id) AS... |
1 month ago |
select rev_user from revision
limit 10;
|
1 month ago |
SELECT
EXTRACT(YEAR_MONTH FROM rev_timestamp) AS year_month,
... |
1 month ago |
select count(*) from user
group by user_id; |
1 month ago |
select count(*) from user; |
1 month ago |
select to_char(rev_timestamp,'Month'),count(*) from revision
where... |
1 month ago |
select to_char(rev_timestamp,'Month'),count(*) from revision
where... |
1 month ago |
select to_char(rev_timestamp,'Month'),count(*) from revision
where... |
1 month ago |
select to_char(rev_timestamp,'MONTH') from revision
limit 50; |
1 month ago |
select to_char(rev_timestamp,'MONTH') from revision
limit 10; |
1 month ago |
select extract(month from rev_timestamp) from revision; |
1 month ago |
select extract(month from rev_timestamp) from revision
limit 20; |
1 month ago |
select extract(month from rev_timestamp) from revision
limit 10; |
1 month ago |
select extract(year from rev_timestamp) from revision
limit 10; |
1 month ago |
select extract(year from rev_timestamp) from revision; |
1 month ago |
select user_id,user_name,user_editcount
from user
order by user_editcount... |
1 month ago |
select user_id,user_name,user_editcount
from user
order by user_editcount... |
1 month ago |
select user_id,user_name,user_editcount
from user
order by user_editcount desc; |
1 month ago |
select count(*) from user
where extract(year from user_registration) = '2024'
; |
1 month ago |
select extract(year from user_registration) from user
limit 2; |
1 month ago |
select * from user
limit 2; |
1 month ago |