> ## Documentation Index
> Fetch the complete documentation index at: https://docs.risingwave.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Workspace

> It is the most intuitive and easy way to interact with RisingWave via workspace. It offers graphical tools for managing data and visualizing results.

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-xl group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
      </button>
    </a>
  </div>;
};

<Frame>
  <img src="https://mintcdn.com/risingwavelabs/9WnDe1wUSbIzC8ce/images/cloud/console-overview/console.png?fit=max&auto=format&n=9WnDe1wUSbIzC8ce&q=85&s=c49327b6ebebdb5283b444474d18cb80" width="2772" height="1273" data-path="images/cloud/console-overview/console.png" />
</Frame>

<br />

<br />

<Button href="https://cloud.risingwave.com/auth/signin/" target="_blank">
  Go to query console
</Button>

## Sections

Click on a section below to see the details.

<Frame>
  <img src="https://mintcdn.com/risingwavelabs/9WnDe1wUSbIzC8ce/images/cloud/console-overview/console-sections.png?fit=max&auto=format&n=9WnDe1wUSbIzC8ce&q=85&s=80c8521ebabd1ae8cbbb61e44aa4ccda" width="5924" height="4782" data-path="images/cloud/console-overview/console-sections.png" />
</Frame>

### Schema

The schema section displays all the tables, sources, materialized views, and sinks defined in the cluster.

To check their columns, click on each item, or click **Expand all** to see all.

### Query editor[](#query-editor "Direct link to Query editor")

The query editor serves as a terminal window where you can write and execute SQL queries.

<Frame>
  <img src="https://mintcdn.com/risingwavelabs/9WnDe1wUSbIzC8ce/images/cloud/console-overview/console-queryeditor.png?fit=max&auto=format&n=9WnDe1wUSbIzC8ce&q=85&s=25360b51b6759aa2a99d49d444078410" width="1470" height="804" data-path="images/cloud/console-overview/console-queryeditor.png" />
</Frame>

#### Jobs

Jobs allow you to organize your SQL statements into groups, making managing and executing multiple queries easier.

Click <Icon icon="plus" iconType="solid" /> to add a job.

#### Sample queries

The sample queries cover the most common steps in RisingWave, such as establishing a connection with a data source, processing data by defining materialized views and querying the results.

See [Explore RisingWave with examples](/cloud/quickstart/#step-4-explore-risingwave-with-examples) for details.

#### Switch users

Click **Switch** in the top right corner to change to another user in your current project when using the console.

### Query results

Here you can view the results of your last query.

<Frame>
  <img src="https://mintcdn.com/risingwavelabs/9WnDe1wUSbIzC8ce/images/cloud/console-overview/console-queryresults.png?fit=max&auto=format&n=9WnDe1wUSbIzC8ce&q=85&s=0e5fe4b8edfbff672ba0706e0814acbf" width="1666" height="741" data-path="images/cloud/console-overview/console-queryresults.png" />
</Frame>

#### Visualize results

Selete the **Chart** tab to visualize the results.

<Frame>
  <img src="https://mintcdn.com/risingwavelabs/9WnDe1wUSbIzC8ce/images/cloud/console-overview/console-queryresults-visualize.png?fit=max&auto=format&n=9WnDe1wUSbIzC8ce&q=85&s=73ae39a6b896a2ce731fc3ddf7f05a6e" width="1692" height="690" data-path="images/cloud/console-overview/console-queryresults-visualize.png" />
</Frame>

#### Refresh results

Click <Icon icon="rotate" iconType="solid" /> to rerun the last executed query manually or set a timer to refresh the results automatically.

#### Download results

Click  <Icon icon="download" iconType="solid" /> to download a CSV copy of the results.

#### Query log

Selete the **Log** tab to check the query log.

The query log tracks and records all queries executed during the current session, providing information such as the execution time, network time, and error messages. The log can help monitor activity, troubleshoot issues, and optimize queries.

<Frame>
  <img src="https://mintcdn.com/risingwavelabs/9WnDe1wUSbIzC8ce/images/cloud/console-overview/console-querylog.png?fit=max&auto=format&n=9WnDe1wUSbIzC8ce&q=85&s=42f636310a5104e72a8f4c369dc7d8cf" width="1772" height="380" data-path="images/cloud/console-overview/console-querylog.png" />
</Frame>

## Start developing

<Card title="Develop with RisingWave Cloud" icon="cloud" iconType="solid" href="/cloud/develop-overview">
  RisingWave Cloud leverages the superpower of RisingWave, an open-source distributed SQL database specifically designed for stream processing. Start building your real-time applications with RisingWave using the console.
</Card>
