answersLogoWhite

0


Best Answer

It is called a Record. An old term that is sometimes used is a tuple, but you will rarely hear that.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

In todays date the data is stored generally in the form of table. The table in database has some rows and columns. And each row of a database table is known as a record.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Eachrow of a database table is called a?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

In a database a field that uniquely identifies a particular record in a table is called?

In a database, a field that uniquely identifies a particular record in a table is called


A row of data in a database is called?

In database the data is stored in the form of a table. A table can be seen as some number of rows and columns. And the row of the database table is called a record .


In a database files are called?

A database holds records in files that are called tables. Each table has a specific key that defines that table and each master key is unique.


What is a row in a database called?

A database is said to be a collection of records and the data is stored in the table. A table consist of number of rows and columns. Row in the database table is known as a record .


What are the importance of table form query in database?

In database system the data is stored in the form of table. So to store the data in the database, table are very important in a database system.


Why is a table created in database?

Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.Tables are central to a database. A table stores the data. Everything else in the database, such as queries, forms and reports, use the data from the table. Without tables, a database is useless as it would have no data.


What Access object holds the data in your database?

The access object that holds data in your database is called a table. It stores it in rows and columns.


What is drop command?

The "drop" command is typically used in programming or databases to remove a specific element or entity. For example, in SQL, you can use the "DROP TABLE" command to delete a table from a database. It is important to use this command carefully, as it permanently deletes the specified object.


What is a group of fields in a spreadsheet called?

A field is a term associated with databases. Columns in spreadsheets can be related to fields in a database. It is possible to set up a database in a spreadsheet, so in that case a group of columns with data could be like a database table. A database table consists of fields.


How do you connect to a database and table using ADODB?

How do you connect to a database and table using ADODB?


When you create a new database which object is created first?

In Access, when you create a new database, a table is created first.


What is the means drop command?

The DROP table command of SQL lets you drop a table from database . The database requires you to empty a table before you eliminate from the database. But there is a condition for dropping a table ; it must be an empty table. syntax: 1st - delete from table-name; 2nd- drop table table-name;