HasJoinCommand - returns true if optional JoinCommand is present in SelectCommand Example: SELECT * FROM table JOIN table2 ON table.one EQUAL table2.two; Returns true SELECT * FROM table; Returns false
()
| 283 | // SELECT * FROM table; |
| 284 | // Returns false |
| 285 | func (ls SelectCommand) HasJoinCommand() bool { |
| 286 | if ls.JoinCommand == nil { |
| 287 | return false |
| 288 | } |
| 289 | return true |
| 290 | } |
| 291 | |
| 292 | // UpdateCommand - Part of Command that allow to change existing data |
| 293 | // |
no outgoing calls