The SYS_GUID function was introduced in MariaDB 10.6.1 to enhance Oracle compatibility. Similar functionality can be achieved with the UUID function.
SYS_GUID()
Returns a 16-byte globally unique identifier (GUID), similar to the UUID function, but without the - character.
SELECT SYS_GUID(); +----------------------------------+ | SYS_GUID() | +----------------------------------+ | 2C574E45BA2811EBB265F859713E4BE4 | +----------------------------------+
© 2023 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/sys_guid/