Search Results
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/refman/8.4/en/sql-mode.html
The MySQL server can operate in different SQL modes, and can apply these modes differently for different clients, depending on the value of the sql_mode system variable. DBAs can set the global SQL mode to match site server operating requirements, ...When working with InnoDB tables, consider also the innodb_strict_mode system ...
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/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/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/mysql-shell/9.4/en/mysql-shell-sql-system-log.html
SQL statements that you issue in MySQL Shell’s SQL mode can be sent to the operating system’s system logging facility. When you activate system logging for SQL statements, the following items are written to the system logging facility: SQL ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-log-sql.html
You can log all SQL statements executed by MySQL Shell commands or utilities to the MySQL Shell log file. Note logSql replaces dba.logSql if dba.logSql is disabled, logSql takes precedence. However, if dba.logSql is enabled, it takes precedence ...