Tables are the container for all the data that relational database guards and they are the basic structure of the databases.
Tables are divided in Column and Rows. Each row will represent a piece of data and it will be referenced by the column(header)
Example :
-we will create a basic table that will store a name and an email.
CREATE TABLE TEST(
NAME varchar(10),
EMAIL varchar(10)
);