Structured Types (cont.) User-defined row types create type CustomerType as( name Name. address Address. dateOfBirth date) not final Can then create a table whose rows are a user-defined type create table customer of CustomerType Database System Concepts-5th Edition,Aug 9,2005. 9.11 @Silberschatz,Korth and SudarshanDatabase System Concepts - 5 9.11 ©Silberschatz, Korth and Sudarshan th Edition, Aug 9, 2005. Structured Types (cont.) User-defined row types create type CustomerType as ( name Name, address Address, dateOfBirth date) not final Can then create a table whose rows are a user-defined type create table customer of CustomerType