select count(user_id) from user where user_registration < 20051231021221;
|
2 years ago |
select count(user_id) from user where user_registration=NULL;
|
2 years ago |
select count (user_name) from user where user_registration=NULL;
|
2 years ago |
select count (user_name) from user where user_registration>20050101021221;
|
2 years ago |
select count (user_name) from user where user_registration=20050101021221;
|
2 years ago |
select user_name from user where user_registration='20010121021221';
|
2 years ago |
select min(user_registration) from user;
|
2 years ago |
select min(user_registration) from user \G |
2 years ago |