SPIDER_BG_DIRECT_SQL()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
A description for this Function has not yet been added to this Documentation.
EXAMPLES
CREATE TEMPORARY TABLE tmp_a (
pkey INT NOT NULL,
PRIMARY KEY (pkey)
);
SELECT SPIDER_BG_DIRECT_SQL('SELECT 22', 'tmp_a', 'srv "s_2_1", database "test"') AS result;
+--------+
| result |
+--------+
| 1 |
+--------+
SELECT pkey FROM tmp_a;
+------+
| pkey |
+------+
| 22 |
+------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.