Skip to content

l2_norm()

Function Description

The l2_norm function is used to calculate l2/Euclidean norm. The l2 norm is obtained by performing square root operation on the sum of squares of vector elements.

Function Syntax

> SELECT l2_norm(vector) AS result FROM table_name;

Example

drop table if exists vec_table;
create table vec_table(a int, b vecf32(3), c vecf64(3));
insert into vec_table values(1, "[1,2,3]", "[4,5,6]");
mysql> select * from vec_table;
+-------+--------------------------+
| a | b | c |
+-------+--------------------------+
| 1 | [1, 2, 3] | [4, 5, 6] |
+-------+--------------------------+
1 row in set (0.00 sec)

mysql> select l2_norm(b) from vec_table;
+-------------------------+
| l2_norm(b) |
+-------------------------+
| 3.7416573867739413 |
+-------------------------+
1 row in set (0.01 sec)