Search Results
                    
                    
            https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/using-sql.html
                                 In addition to the simplified X DevAPI syntax of the Session object, the Session object has a sql() function that takes any SQL statement as a string. The following example uses a Session to call an SQL Stored Procedure on the specific node. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-sql-statements.html
                                row *************************** PLUGIN_NAME: ndbinfo PLUGIN_VERSION: 0.1 PLUGIN_STATUS: ACTIVE PLUGIN_TYPE: STORAGE ENGINE PLUGIN_TYPE_VERSION: 80406.0 PLUGIN_LIBRARY: NULL PLUGIN_LIBRARY_VERSION: NULL PLUGIN_AUTHOR: Oracle Corporation ... This ...
                                            
                https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-table-syntax-sql.html
                                mysql> CREATE EXTERNAL TABLE table_1( col_1 int, col_2 int, col_3 int) FILE_FORMAT = (FORMAT csv) FILES = (URL = 'https://objectstorage.us-ashburn-1.oraclecloud.com/p/.../n/tenancy_1/b/bucket_1/o/data_file_1.csv'); FILE_NAME: A specific Object ...
                                            
                https://dev.mysql.com/doc/x-devapi-userguide/en/working-with-sql-result-sets.html
                                 When you execute an SQL operation on a Session using the sql() method, an SqlResult is returned. Iterating over an SqlResult is identical to working with results from CRUD operations. An SqlResult combines a result set produced by, for example, ...
                                            
                https://dev.mysql.com/doc/x-devapi-userguide/en/dynamic-sql.html
                                 A quoting function exists to escape SQL names and identifiers. Use the value binding syntax of Session.sql() instead; see Section 2.4, “Using SQL with Session” for some examples. C++ Code #include <mysqlx/xdevapi.h> // Note: The following ...
                                            
                https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/dynamic-sql.html
                                 A quoting function exists to escape SQL names and identifiers. Use the value binding syntax of Session.sql() instead; see Section 2.4, “Using SQL with Session” for some examples. Session.quoteName() escapes the identifier given in accordance to ...
                                            
                https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/dynamic-sql.html
                                 A quoting function exists to escape SQL names and identifiers. Use the value binding syntax of Session.sql() instead; see Section 2.4, “Using SQL with Session” for some examples. Session.quoteName() escapes the identifier given in accordance to ...
                                            
                https://dev.mysql.com/doc/internals/en/sql-common-directory.html
                                 Three files: client.c, my_time.c, pack.c. You will file symlinks to these files in other directories. ...
                                            
                https://dev.mysql.com/doc/internals/en/sql-statement-example.html
                                FROM mysqltest1.t5 WHERE (f2 BETWEEN 17 AND 25 OR f2 = 61) AND f3 IN (SELECT .... 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/faqs-sql-modes.html
                                What is the default server SQL mode when MySQL 8.4 is installed? A.3.1. What are server SQL modes? Server SQL modes define what SQL syntax MySQL should support and what kind of data validation checks it should perform. This makes it easier to use ...