1.

The user defined data type can be created using(a) Create datatype(b) Create data(c) Create definetype(d) Create typeThe question was asked in my homework.I'd like to ask this question from SQL Data Types and Schemas topic in portion SQL : Queries, Constraints and Triggers of Database Management

Answer»

Right option is (d) CREATE type

Easiest explanation - The create type clause can be used to DEFINE new types.Syntax : create type DOLLARS as NUMERIC(12,2) FINAL; .



Discussion

No Comment Found

Related InterviewSolutions