ICU_VERSION() - ICU (International Components for Unicode) Version

Q

How to obtain the version number of the ICU (International Components for Unicode) library using the ICU_VERSION() function?

✍: FYIcenter.com

A

ICU_VERSION() is a MySQL built-in function that returns the version number of the ICU (International Components for Unicode) library. For example:

SELECT ICU_VERSION();
  -- +---------------+
  -- | ICU_VERSION() |
  -- +---------------+
  -- | 59.1          |
  -- +---------------+

Reference information of the ICU_VERSION() function:

ICU_VERSION(): ver
  Returns the version number of the ICU library.

Arguments, return value and availability:
  ver: Return value. The version number of the ICU library.
  Available since MySQL 4.0.

 

LAST_INSERT_ID() - Last Value of AUTO_INCREMENT Column

FOUND_ROWS() - Row Count from Last SELECT Statement

MySQL Functions on System Information

⇑⇑ MySQL Function References

2023-12-19, 247🔥, 0💬