Is there a way to list available SQL commands at MySQL CLI? I mean if I type help
at MySQL CLI I see various MySQL CLI specific commands like clear(\c)
or tee(\T)
, but it would be handy to see a list of available SQL commands like SELECT
or UPDATE
for beginner.
|
|||
|
You can use:
to retrieve a list of the top-level help categories.
Possible result will be:
More info you can find: |
|||
|