Tables

What are tables ?

Table is a collection of data, organized in terms of rows and columns. In DBMS term, table is known as relation and row as tuple.

The CREATE TABLE statement is used to create a new table in a database.

Syntax

CREATE TABLE table_name (
  *column1 datatype*,
  *column2 datatype*,
  *column3 datatype*,
  ....
);

The column parameters specify the names of the columns of the table.

The datatype parameter specifies the type of data the column can hold (e.g. varchar, integer, date, etc.).

Tables in DGS

Selecting Table from list

The tables in DGS are categorized according to Raw tables, Standard tables, Schedules, KPI's, Inventory tables, PLC tables, etc.

This way it gets easier to looks for tables, that are needed.

The tables, can be found in the Query Analyzer section.