Interview Preparation mode beta
Funny Facebook Status Funny Facebook Status
Enter your email address

What is record, or row?

Nice?Vote!
asked 1 year ago in SQL Server Interview Questions and Answers by siva (10,720 points) edited 1 year ago by R

2 Answers

Nice?Vote!
A record, also called a row of data, is each individual entry that exists in a table. For example there are 7 records in the above CUSTOMERS table. Following is a single row of data or record in the CUSTOMERS table:

+----+----------+-----+-----------+----------+
|  1 | Ramesh   |  32 | Ahmedabad |  2000.00 |
+----+----------+-----+-----------+----------+
answered 1 year ago by R (19,530 points)
Nice?Vote!
Database has various tables for separate set of data. Data in tables are stored as rows and columns. Single row has all related data in its columns. It has primary key to be identified unique.
answered 1 year ago by R (19,530 points)

Related questions