Forrest logo
back to the show tool

odps:tldr:f9de0

odps: Show tables in the current project.
$ show tables;
try on your machine

The command "show tables;" is used in Structured Query Language (SQL) to retrieve a list of tables present in a database.

When you execute this command, it will produce a result set that displays the names of all the tables within the currently selected database. The result will typically be a table with a single column, where each row represents a different table name.

This command is particularly useful when you want to get an overview of the tables in a database or when you need to reference the names of tables for further querying or operations.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the show tool