Showing:

Diagrams
Instances
Model
Properties
Source
Used by
Element boolean_test
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_boolean_primary.tmp#boolean_primary ansi2003_xsd_Element_boolean_test.tmp#boolean_test_is_not_truth_value
Properties
content complex
Used by
Element boolean_factor
Model
Children boolean_primary, is_not_truth_value
Instance
<boolean_test xmlns="http://www.sqlparser.com/xml/ansi2003">
  <boolean_primary>{1,1}</boolean_primary>
  <is_not_truth_value>{0,1}</is_not_truth_value>
</boolean_test>
Source
<xs:element name="boolean_test">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="boolean_primary"/>
      <xs:element name="is_not_truth_value" minOccurs="0">
        <xs:complexType>
          <xs:sequence>
            <xs:element ref="kw_is"/>
            <xs:element ref="kw_not" minOccurs="0"/>
            <xs:element ref="truth_value"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>
Element boolean_test / is_not_truth_value
Namespace http://www.sqlparser.com/xml/ansi2003
Diagram
Diagram ansi2003_xsd_Element_kw_is.tmp#kw_is ansi2003_xsd_Element_kw_not.tmp#kw_not ansi2003_xsd_Element_truth_value.tmp#truth_value
Properties
content complex
minOccurs 0
Model
Children kw_is, kw_not, truth_value
Instance
<is_not_truth_value xmlns="http://www.sqlparser.com/xml/ansi2003">
  <kw_is>{1,1}</kw_is>
  <kw_not>{0,1}</kw_not>
  <truth_value>{1,1}</truth_value>
</is_not_truth_value>
Source
<xs:element name="is_not_truth_value" minOccurs="0">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="kw_is"/>
      <xs:element ref="kw_not" minOccurs="0"/>
      <xs:element ref="truth_value"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>