No, a record is one row. A field contains an atomic piece of data. If you
need more than one value in a field for a record, this is a candiate for a
related child table. For example, if you have a customer that has more than
one telephone number, you can only put one number in the Phone_Number fields,
so you need a way to handle this. You could create a table named
tblCustomerPhones that would contain the following fields:
CUST_KEY - The value of the primary key for the customers record.
PHONE_NUMBER - A unique phone number for the customer
NUMBER_TYPE - (fax, cell, office, home, etc)