79382454

Date: 2025-01-23 20:19:53
Score: 0.5
Natty:
Report link

Something like this:

INSERT INTO Test(date, text, text2)
SELECT n.*
FROM (
  VALUES('2025-01-22 10:10:03', 'Data5', 'DATA2')
) AS n
WHERE (n.column2, n.column3) NOT IN ( 
  SELECT text, text2
  FROM Test
  ORDER BY id DESC
  LIMIT 1
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: yotheguitou