In databases and SQL:
Tables: Structured collections of data organized into rows and columns. Each row represents a record, and each column represents an attribute or field.
Fields (Columns):Individual data elements within a table, representing specific attributes of the records.
SQL involves creating, querying, and managing tables and their fields to store and retrieve data in a relational database.
Riya Answered question December 18, 2023
There are rows and columns in a table; rows are called records, and columns are called fields. Each row in the database has one value for a column, which is made up of data values of a particular type, such as numbers or alphabets.
Vishalini.R Answered question December 18, 2023
