QUESTION POSED ON: 07 June 2007
I have this table:
MyTable
-------
type varchar2(20)
subtype varchar2(40)
I have various validation rules to be applied while inserting the
records in this table. For example, if the type is 'Tool' the subtype
can only be 'Template' or 'Document.' If the type is 'Role' the
subtype can only be 'Group' or 'Individual.' How can I achieve this?
|