Monday 7 October 2013

14. Write a statement to create a user-defined data type named quality. This data type should be varchar(100) and should not contain NULL values.

create type quality
from varchar(50) not null;

No comments:

Post a Comment