79743905

Date: 2025-08-22 22:47:58
Score: 1.5
Natty:
Report link

The INSERT...RETURNING clause was added to MariaDB in version 10.5.0, released on December 3, 2019.

Example:

INSERT INTO mytable
  (foo, bar)
VALUES
  ('fooA', 'barA'),
  ('fooB', 'barB')
RETURNING id;
``
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Geoff