BENCHMARK

Sintassi

BENCHMARK(num, espr)

Spiegazione

La funzione BENCHMARK() esegue l'espressione espr num volte. Può essere utilizzata per misurare il tempo impiegato da MariaDB per elaborare l'espressione. Il valore risultante è sempre 0. E' pensata per essere utilizzata nel client mysql, che riporta il tempo di esecuzione della query:

Esempi

MariaDB [(none)]> SELECT BENCHMARK(1000000,ENCODE('hello','goodbye'));
+----------------------------------------------+
| BENCHMARK(1000000,ENCODE('hello','goodbye')) |
+----------------------------------------------+
|                                            0 |
+----------------------------------------------+
1 row in set (0.26 sec)

MariaDB [(none)]> 

Commenti

Sto caricando i commenti......
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.