What is a Database Tables

A database contain one or more tables that contain data , they are uniquely identified by their name(no two tables can have the same name in one database). Tables are organized in rows and columns. Columns contain the column name, data type, and any other attributes for the column. Rows contain the records or data for the columns

Example

Table Test
Column 1 Column 2 Column 3
Data Row 1 Data Row 2 Data Row 3
Data Row 1 Data Row 2 Data Row 3
Data Row 1 Data Row 2 Data Row 3
Now that we have seen what a table is let's learn how to create a table in the next tutorial.