answersLogoWhite

0


Best Answer

In relational databases and flat file databases, a tableis a set of data elements (values) that is organized using a model of vertical columns (which are identified by their name) and horizontal rows. A table has a specified number of columns, but can have any number of rows[citation needed]. Each row is identified by the values appearing in a particular column subset which has been identified as a candidate key.

Table is another term for relations; although there is the difference in that a table is usually a multi-set (bag) of rows whereas a relation is a set and does not allow duplicates. Besides the actual data rows, tables generally have associated with them some meta-information, such as constraints on the table or on the values within particular columns.

The data in a table does not have to be physically stored in the database. Views are also relational tables, but their data are calculated at query time. Another example are nicknames, which represent a pointer to a table in another database

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

Tables in SQL, or the SQL Database tables are the foundation of every Relational Database Management System.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are tables in SQL?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

What does SQL CREATE VIEW achieve?

SQL CREATE VIEW achieves the creation of a table or tables in the SQL database. One can then create tables to the purpose they desire and fill them in with information.


The process of designing and creating a set of database tables that avoids redundancies and anomalies is known as?

SQL


What does a SQL developer do?

There are two distinct sides to being a SQL Developer. The easiest side is writing applications that are able to interface with an SQL database. The more complicated role requires the actual development of the SQL database; designing the tables, stored procedures, views, functions, etc. Most SQL Developers will have a foot in both camps - doing some of the database design and then writing applications to interface with it.


Where can SQL tools be found online?

SQL are Database Developers allowing one to produce database tables and values. Ideone is a program that also allows one to change the language as well as the values and program the data into the relevant fields.


What is data base catalog?

The database catalog of a database instance consists of metadata in which definitions of database objects such as base tables, views (virtual tables), synonym, value ranges, indexes, users, and user groups are stored.The SQL standard specifies a uniform means to access the catalog, called the INFORMATION_SCHEMA, but not all database follow this, even if they implement other aspects of the SQL standard. For an example of database-specific metadata access methods, see Oracle metadata.

Related questions

Feature of rdbms?

It stores data in tables. Tables have rows and column. These tables are created using SQL. And data from these tables are also retrieved using SQL


How do you use SQL?

You use SQL by issuing commands to an SQL server, either directly by you or by a program you are using.


What does SQL CREATE VIEW achieve?

SQL CREATE VIEW achieves the creation of a table or tables in the SQL database. One can then create tables to the purpose they desire and fill them in with information.


What is schema in mysql?

Schema is structure you created for your tables in My SQL


SQL statements that define the tables in a database are referred to as?

DDL Statments


What does the Join SQL clause feature in computer programming?

A Join SQL clause is a combination of two or more tables from a database. Fields are joined by using data that is present in both tables and are written as an identification for the join.


What training is needed to work with SQL databases?

This unique introductory SQL tutorial not only provides easy-to-understand SQL instructions, but it allows you to practice what you learn using the on-line SQL interpreter. You will receive immediate results after submitting your SQL commands. You will be able to create your own unique tables as well as perform selects, inserts, updates, deletes, and drops on your tables. This SQL tutorial currently supports a subset of ANSI SQL. The basics of each SQL command will be covered in this introductory tutorial. Unless otherwise stated, the interpreter will support everything covered in this course.


What is a sql virtual table called?

A SQL virtual table is called a "view". Views are virtual tables that contain the result set of a SELECT query and can be used to simplify complex queries or provide a layer of abstraction over the underlying tables.


The process of designing and creating a set of database tables that avoids redundancies and anomalies is known as?

SQL


To join n tables together you need a minmun of how many join conditions in sql?

glue


What is the means drop command in sql?

The DROP command allows you to delete things such as tables or indexes.


What does an SQL join combine?

A SQL join clause combines records from two or sometimes more than two tables in to a database. This creates a set that can be used as it is or can be saved as a table.