Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mingxiw authored Oct 23, 2024
1 parent 97dc54b commit a4570ab
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions demos/guru_scripts/docker/tutorial/4.x/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,15 @@ CREATE OR REPLACE QUERY q1a () SYNTAX v3 {

}

#compile and install the query as a stored procedure
#Two methods to run the query. The compiled method gives the best performance.

#Method 1: Run immediately with our interpret engine
interpret query q1a()

#Method 2: Compile and install the query as a stored procedure
install query q1a

#run the query
#run the compiled query
run query q1a()
```
### SELECT INTO A Table Style
Expand Down

0 comments on commit a4570ab

Please sign in to comment.