I am facing a query while utilizing Drizzle ORM with MySQL.
At present, Drizzle ORM lacks an insert returning function for MySQL. Feel free to refer to this link for more information.
My platform registers users into the system and generates JWT tokens upon signup. As the JWT payload requires the user's id, it is crucial to retrieve the id of the recently added user.
In this scenario, how can I obtain the auto-incremented integer id for the newly inserted record?