SET/SHOW statement
Overview
The SET
statement lets you set specific options, and the SHOW
statement helps you see the current values in Oxla.
Syntax
SET Syntax
SHOW Syntax
The available options that can be set and shown are:
-
extra_float_digits
: By default, Oxla displays a limited number of digits, but you can set how many extra digits are displayed after the decimal point in floating-point numbers by usingextra_float_digits
. -
application_name
: Sets a custom name for the application. -
timezone
: Determines the time zone used for date and time functions. -
client_min_messages
: Sets the message levels sent to the client. Valid values areDEBUG5
,DEBUG4
,DEBUG3
,DEBUG2
,DEBUG1
,LOG
,NOTICE
,WARNING
, andERROR
. -
search_path
: Defines namespaces at which Oxla looks for tables.
Examples
Case #1: SHOW Statement
Example 1
To display the current timezone setting, use the following query:
This will display the current timezone setting.
Example 2
To display the current search path, use the following query:
This will display the current search path setting.
Case #2: SET Statement
Example 1
To change the number of digits, use the SET
statement below:
This will set the number of digits displayed for floating-point values to 2.
Example 2
To change the client message, use the SET
statement below:
This will set the message level to ‘WARNING’.