SQL Table

SQL Table : A relational database system contains one or more objects called tables. The data or information for the database are stored in these tables. SQL Table are uniquely identified by their names and are comprised of columns and rows. Columns contain the column name, data type, and any other attributes for the column. Rows contain the records or data for the columns. Here is a sample table called “weather”.

city, state, high, and low are the columns. The rows contain the data for this SQL Table:

Weather
city state high low
City A State A 105 90
City B State A 101 92
City C State A 88 69
City D State B 77 60
City E State C 80 72

 

 

Scroll to Top