We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4d7cca commit d684bf8Copy 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 * FROM table WHERE field = %(some_value)s"
+ parameters = {"some_value": "foo"}
+ Will result in the query "SELECT * FROM table WHERE field = 'foo' being sent to the server
463
:returns self
464
"""
465
if parameters is not None:
0 commit comments