What is a record in sql? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

What is a record in sql?

22nd May 2019, 9:12 PM
Omar
Omar - avatar
3 Réponses
+ 7
Omar A record is a data structure that can hold data items of different kinds. Records consist of different fields, similar to a row of a database table. For example, you want to keep track of your books in a library. You might want to track the following attributes about each book, such as Title, Author, Subject, Book ID. A record containing a field for each of these items allows treating a BOOK as a logical unit and allows you to organize and represent its information in a better way. source: https://www.tutorialspoint.com/plsql/plsql_records.htm I hope I was helpful
22nd May 2019, 10:16 PM
Alessio Benvenuti
Alessio Benvenuti - avatar
+ 7
record = an ordered set of data constituting a record
22nd May 2019, 10:25 PM
Alessio Benvenuti
Alessio Benvenuti - avatar
0
So Record=row ?
22nd May 2019, 10:17 PM
Omar
Omar - avatar