forked from nique_372/MQLArticles
5 lines
284 B
MySQL
5 lines
284 B
MySQL
|
|
INSERT INTO timing_results (run_date, operation, dataset, library, iteration, microseconds)
|
||
|
|
VALUES (?,?,?,?,?,?)
|
||
|
|
ON CONFLICT(run_date, library, operation, dataset, iteration)
|
||
|
|
DO UPDATE SET microseconds = excluded.microseconds
|
||
|
|
WHERE excluded.microseconds < timing_results.microseconds;
|