We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd4d7cca commitd684bf8Copy full SHA for d684bf8
src/databricks/sql/client.py
@@ -457,9 +457,9 @@ def execute(
457
Execute a query and wait for execution to complete.
458
Parameters should be given in extended param format style: %(...)<s|d|f>.
459
For example:
460
- operation = "SELECT * FROM%(table_name)s"
461
- parameters = {"table_name": "my_table_name"}
462
- Will result in the query "SELECT * FROM'my_table_name' being sent to the server
+ operation = "SELECT * FROMtable WHERE field = %(some_value)s"
+ parameters = {"some_value": "foo"}
+ Will result in the query "SELECT * FROMtable WHERE field = 'foo' being sent to the server
463
:returns self
464
"""
465
ifparametersisnotNone: