Showing:

Diagrams
Instances
Model
Properties
Source
Used by
Element column_constraint
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_column_constraint.tmp#column_constraint_not_null ansi2003_xsd_Element_unique_specification.tmp#unique_specification ansi2003_xsd_Element_references_specification.tmp#references_specification ansi2003_xsd_Element_check_constraint_definition.tmp#check_constraint_definition
Properties
content complex
Used by
Model
Children check_constraint_definition, not_null, references_specification, unique_specification
Instance
<column_constraint xmlns="http://www.sqlparser.com/xml/ansi2003">
  <not_null>{1,1}</not_null>
  <unique_specification>{1,1}</unique_specification>
  <references_specification>{1,1}</references_specification>
  <check_constraint_definition>{1,1}</check_constraint_definition>
</column_constraint>
Source
<xs:element name="column_constraint">
  <xs:complexType>
    <xs:choice>
      <xs:element name="not_null">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="kw_not"/>
            <xs:element ref="kw_null"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element ref="unique_specification"/>
      <xs:element ref="references_specification"/>
      <xs:element ref="check_constraint_definition"/>
    </xs:choice>
  </xs:complexType>
</xs:element>
Element column_constraint / not_null
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_kw_not.tmp#kw_not ansi2003_xsd_Element_kw_null.tmp#kw_null
Properties
content complex
Model
Children kw_not, kw_null
Instance
<not_null xmlns="http://www.sqlparser.com/xml/ansi2003">
  <kw_not>{1,1}</kw_not>
  <kw_null>{1,1}</kw_null>
</not_null>
Source
<xs:element name="not_null">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="kw_not"/>
      <xs:element ref="kw_null"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>