79152056

Date: 2024-11-03 04:39:42
Score: 0.5
Natty:
Report link

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

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Hiren Kalariya