View the help manual by level

The quickest way to forget the operational syntax is by looking at the built-in help documentation. Can you go through first? Contents command to display all the categories available for query.

? contents
Copy the code

You can then follow the prompts to further query the subcategories listed below (? Equivalent to help) :

? Data Manipulation
Copy the code

To continue, for example, to see the syntax of the INSERT statement, type:

? INSERT
Copy the code

Direct query by keyword

In practice, you can also query a statement directly by keyword, such as ‘group by’.

? group by
Copy the code