Information Systems and Databases Flashcards
What are the 8 most common field data types?
Integer, Decimal/Fixed Point, Real/Float, Money/Currency, Boolean/Bit, Date/Time, Text/Char and Binary/BLOB.
What is an Integer data type?
Exact whole numbers (both negative and positive)
What is a Decimal/Fixed Point data type?
Exact fixed decimal point numbers with limited precision. A scale of an integer data type.
What is a Real/Float data type?
Approximate fractional numbers with a very large range.
What is a Money/Currency data type?
Exact, essentially an integer scaled to have four decimal places and optimised for financial accuracy.
What is a Boolean/Bit data type?
Yes/No or True/False data.
What is a Date/Time data type?
A number representing the days since (or prior to) a specific date.
What is a Text/Char data type?
String data represented as a sequence of individual characters.
What is a Binary/BLOB data type?
Raw binary data. Used for storing images, audio or other non-numeric or text data.