You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -231,6 +231,8 @@ and `{}` for a mutually exclusive keyword.
231
231
| Show DML Execution Plan |`EXPLAIN {INSERT\|UPDATE\|DELETE} ...;`||
232
232
| Show Query Execution Plan with Stats |`EXPLAIN ANALYZE SELECT ...;`||
233
233
| Show DML Execution Plan with Stats |`EXPLAIN ANALYZE {INSERT\|UPDATE\|DELETE} ...;`||
234
+
| Show Query Result Shape |`DESCRIBE SELECT ...;`||
235
+
| Show DML Result Shape |`DESCRIBE {INSERT\|UPDATE\|DELETE} ... THEN RETURN ...;`||
234
236
| Start a new query optimizer statistics package construction |`ANALYZE;`||
235
237
| Start Read-Write Transaction |`BEGIN [RW] [PRIORITY {HIGH\|MEDIUM\|LOW}] [TAG <tag>];`| See [Request Priority](#request-priority) for details on the priority. The tag you set is used as both transaction tag and request tag. See also [Transaction Tags and Request Tags](#transaction-tags-and-request-tags).|
0 commit comments