sqlz icon indicating copy to clipboard operation
sqlz copied to clipboard

sqlz.UpdateStmt has no field or method From

Open aharal opened this issue 4 years ago • 0 comments

Actually, I want to implement the following SQL statement using sqlz package but it return sqlz.UpdateStmt has no field or method From error as there are no From Field for UpdateStmt.

UPDATE table [ * ] [ [ AS ] alias ]
    SET { column = { expression | DEFAULT } |
          ( column [, ...] ) = ( { expression | DEFAULT } [, ...] ) } [, ...]
    [ FROM from_list ]
    [ WHERE condition | WHERE CURRENT OF cursor_name ]

aharal avatar Jun 11 '21 05:06 aharal