Called when a SELECT statement has no froms, and no FROM clause is to be appended. Gives Oracle Database a chance to tack on a ``FROM DUAL`` to the string output.
(self)
| 2380 | return get |
| 2381 | |
| 2382 | def default_from(self) -> str: |
| 2383 | """Called when a SELECT statement has no froms, and no FROM clause is |
| 2384 | to be appended. |
| 2385 | |
| 2386 | Gives Oracle Database a chance to tack on a ``FROM DUAL`` to the string |
| 2387 | output. |
| 2388 | |
| 2389 | """ |
| 2390 | return "" |
| 2391 | |
| 2392 | def visit_override_binds(self, override_binds, **kw): |
| 2393 | """SQL compile the nested element of an _OverrideBinds with |
no outgoing calls