Hi,
I have made my application in MS SQL, but I want to change it to MariaDB.
Does anyone know how to write to current sql statement for MariaDB?
INSERT INTO customer_data (email, first, affix, last)
OUTPUT INSERTED.uid, INSERTED.salt, INSERTED.websalt
VALUES (‘%{userName}’, ‘%{firstName}’, ‘%{affix}’, ‘%{lastName}’)
thank you in advance!
Koen