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)
| 2440 | return get |
| 2441 | |
| 2442 | def default_from(self) -> str: |
| 2443 | """Called when a SELECT statement has no froms, and no FROM clause is |
| 2444 | to be appended. |
| 2445 | |
| 2446 | Gives Oracle Database a chance to tack on a ``FROM DUAL`` to the string |
| 2447 | output. |
| 2448 | |
| 2449 | """ |
| 2450 | return "" |
| 2451 | |
| 2452 | def visit_override_binds(self, override_binds, **kw): |
| 2453 | """SQL compile the nested element of an _OverrideBinds with |
no outgoing calls