Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SAP Sybase SQL Anywhere 16.0 » SQL Anywhere Server - SQL Usage » Tables, views, and indexes » Tables

 

Viewing data in tables (SQL)

You can use Interactive SQL to view the data in tables.

Prerequisites

You must have SELECT privilege on the table or the SELECT ANY TABLE system privilege.

 Task
  • Execute a statement similar to the following, where table-name is the table that contains the data you want to view.

    SELECT * FROM table-name;

Results

The data for the table appears in the Results pane.

Next

You can edit the data in the Results pane.

 See also