MCPcopy Index your code
hub / github.com/LissaGreense/GO4SQL / HasJoinCommand

Method HasJoinCommand

ast/ast.go:285–290  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

283// SELECT * FROM table;
284// Returns false
285func (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//

Calls

no outgoing calls