I have try Different Way and Finally I found this answer
where: {
[Op.and]: [
Sequelize.where(
fn("DATE", col("createdAt")),
Op.eq,
fn("DATE", col("updatedAt"))
),
],
},
Using this We can find data that createdAt and updatedAt the same And this considers only date in comparison