Datetime equal or greater than today in MySQL Datetime equal or greater than today in MySQL mysql mysql

Datetime equal or greater than today in MySQL


SELECT * FROM users WHERE created >= CURDATE();

But I think you mean created < today


SELECT * FROM users WHERE created >= NOW();

if the column is datetime type.