Return the SQL string corresponding to this item type.
(self)
| 153 | VIEW = "view" |
| 154 | |
| 155 | def sql(self) -> str: |
| 156 | """Return the SQL string corresponding to this item type.""" |
| 157 | return self.replace("-", " ").upper() |
| 158 | |
| 159 | def show_create(self, fqname: str) -> str | None: |
| 160 | """ |