Search
scanning

Scanning is the default search option for small tables.

Enter text here to perform a scan over supported column types.

Text columns with limited length use a substring search If the entered text is a number, integer columns will be scanned for an exact match of the value.

seeking

Seeking is the default search option for large tables.

Seeking requires indexes and can only be done using the column (or columns) the index is defined on.

In the single-column case, the database will seek to the position the entered search term would be at and return all rows greater or equal to that value.

In the multiple-column case, the above still applies to the column you supplied non-empty search text for. All previous columns, however, will be using an equality match.

 
 

Note that there are some explanatory texts on larger screens.

plurals
  1. DLdbo
    primarykey
    data
    text
  2. DLdbo
    primarykey
    data
    text
  3. DLdbo
    primarykey
    data
    text
  4. DLdbo
    primarykey
    data
    text
  5. DLdbo
    primarykey
    data
    text
    CREATE XML SCHEMA COLLECTION [HumanResources].[HRResumeSchemaCollection] AS '<?xml version="1.0" encoding="UTF-8"?> <xsd:schema targetNamespace="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume" xmlns="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" > <xsd:element name="Resume" type="ResumeType"/> <xsd:element name="Address" type="AddressType"/> <xsd:element name="Education" type="EducationType"/> <xsd:element name="Employment" type="EmploymentType"/> <xsd:element name="Location" type="LocationType"/> <xsd:element name="Name" type="NameType"/> <xsd:element name="Telephone" type="TelephoneType"/> <xsd:complexType name="ResumeType"> <xsd:sequence> <xsd:element ref="Name"/> <xsd:element name="Skills" type="xsd:string" minOccurs="0"/> <xsd:element ref="Employment" maxOccurs="unbounded"/> <xsd:element ref="Education" maxOccurs="unbounded"/> <xsd:element ref="Address" maxOccurs="unbounded"/> <xsd:element ref="Telephone" minOccurs="0"/> <xsd:element name="EMail" type="xsd:string" minOccurs="0"/> <xsd:element name="WebSite" type="xsd:string" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="AddressType"> <xsd:sequence> <xsd:element name="Addr.Type" type="xsd:string"> <xsd:annotation> <xsd:documentation>Home|Work|Permanent</xsd:documentation> </xsd:annotation> </xsd:element> <xsd:element name="Addr.OrgName" type="xsd:string" minOccurs="0"/> <xsd:element name="Addr.Street" type="xsd:string" maxOccurs="unbounded"/> <xsd:element name="Addr.Location"> <xsd:complexType> <xsd:sequence> <xsd:element ref="Location"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="Addr.PostalCode" type="xsd:string"/> <xsd:element name="Addr.Telephone" minOccurs="0"> <xsd:complexType> <xsd:sequence> <xsd:element ref="Telephone" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:sequence> </xsd:complexType> <xsd:complexType name="EducationType"> <xsd:sequence> <xsd:element name="Edu.Level" type="xsd:string"> <xsd:annotation> <xsd:documentation>High School|Associate|Bachelor|Master|Doctorate</xsd:documentation> </xsd:annotation> </xsd:element> <xsd:element name="Edu.StartDate" type="xsd:date"/> <xsd:element name="Edu.EndDate" type="xsd:date"/> <xsd:element name="Edu.Degree" type="xsd:string" minOccurs="0"/> <xsd:element name="Edu.Major" type="xsd:string" minOccurs="0"/> <xsd:element name="Edu.Minor" type="xsd:string" minOccurs="0"/> <xsd:element name="Edu.GPA" type="xsd:string" minOccurs="0"/> <xsd:element name="Edu.GPAAlternate" type="xsd:decimal" minOccurs="0"> <xsd:annotation> <xsd:documentation>In case the institution does not follow a GPA system</xsd:documentation> </xsd:annotation> </xsd:element> <xsd:element name="Edu.GPAScale" type="xsd:decimal" minOccurs="0"/> <xsd:element name="Edu.School" type="xsd:string" minOccurs="0"/> <xsd:element name="Edu.Location" minOccurs="0"> <xsd:complexType> <xsd:sequence> <xsd:element ref="Location"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:sequence> </xsd:complexType> <xsd:complexType name="EmploymentType"> <xsd:sequence> <xsd:element name="Emp.StartDate" type="xsd:date" minOccurs="0"/> <xsd:element name="Emp.EndDate" type="xsd:date" minOccurs="0"/> <xsd:element name="Emp.OrgName" type="xsd:string"/> <xsd:element name="Emp.JobTitle" type="xsd:string"/> <xsd:element name="Emp.Responsibility" type="xsd:string"/> <xsd:element name="Emp.FunctionCategory" type="xsd:string" minOccurs="0"/> <xsd:element name="Emp.IndustryCategory" type="xsd:string" minOccurs="0"/> <xsd:element name="Emp.Location" minOccurs="0"> <xsd:complexType> <xsd:sequence> <xsd:element ref="Location"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:sequence> </xsd:complexType> <xsd:complexType name="LocationType"> <xsd:sequence> <xsd:element name="Loc.CountryRegion" type="xsd:string"> <xsd:annotation> <xsd:documentation>ISO 3166 Country Code</xsd:documentation> </xsd:annotation> </xsd:element> <xsd:element name="Loc.State" type="xsd:string" minOccurs="0"/> <xsd:element name="Loc.City" type="xsd:string" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="NameType"> <xsd:sequence> <xsd:element name="Name.Prefix" type="xsd:string" minOccurs="0"/> <xsd:element name="Name.First" type="xsd:string"/> <xsd:element name="Name.Middle" type="xsd:string" minOccurs="0"/> <xsd:element name="Name.Last" type="xsd:string"/> <xsd:element name="Name.Suffix" type="xsd:string" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="TelephoneType"> <xsd:sequence> <xsd:element name="Tel.Type" minOccurs="0"> <xsd:annotation> <xsd:documentation>Voice|Fax|Pager</xsd:documentation> </xsd:annotation> </xsd:element> <xsd:element name="Tel.IntlCode" type="xsd:int" minOccurs="0"/> <xsd:element name="Tel.AreaCode" type="xsd:int" minOccurs="0"/> <xsd:element name="Tel.Number" type="xsd:string"/> <xsd:element name="Tel.Extension" type="xsd:int" minOccurs="0"/> </xsd:sequence> </xsd:complexType> </xsd:schema>';
  6. DLdbo
    primarykey
    data
    text
    ALTER XML SCHEMA COLLECTION [Production].[ProductDescriptionSchemaCollection] ADD '<?xml version="1.0" encoding="UTF-8"?> <xs:schema targetNamespace="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription" xmlns="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription" elementFormDefault="qualified" xmlns:mstns="http://tempuri.org/XMLSchema.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:wm="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelWarrAndMain" > <xs:import namespace="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelWarrAndMain" /> <xs:element name="ProductDescription" type="ProductDescription" /> <xs:complexType name="ProductDescription"> <xs:annotation> <xs:documentation>Product description has a summary blurb, if its manufactured elsewhere it includes a link to the manufacturers site for this component. Then it has optional zero or more sequences of features, pictures, categories and technical specifications. </xs:documentation> </xs:annotation> <xs:sequence> <xs:element name="Summary" type="Summary" minOccurs="0" /> <xs:element name="Manufacturer" type="Manufacturer" minOccurs="0" /> <xs:element name="Features" type="Features" minOccurs="0" maxOccurs="unbounded" /> <xs:element name="Picture" type="Picture" minOccurs="0" maxOccurs="unbounded" /> <xs:element name="Category" type="Category" minOccurs="0" maxOccurs="unbounded" /> <xs:element name="Specifications" type="Specifications" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> <xs:attribute name="ProductModelID" type="xs:string" /> <xs:attribute name="ProductModelName" type="xs:string" /> </xs:complexType> <xs:complexType name="Summary" mixed="true" > <xs:sequence> <xs:any processContents="skip" namespace="http://www.w3.org/1999/xhtml" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> <xs:complexType name="Manufacturer"> <xs:sequence> <xs:element name="Name" type="xs:string" minOccurs="0" /> <xs:element name="CopyrightURL" type="xs:string" minOccurs="0" /> <xs:element name="Copyright" type="xs:string" minOccurs="0" /> <xs:element name="ProductURL" type="xs:string" minOccurs="0" /> </xs:sequence> </xs:complexType> <xs:complexType name="Picture"> <xs:annotation> <xs:documentation>Pictures of the component, some standard sizes are "Large" for zoom in, "Small" for a normal web page and "Thumbnail" for product listing pages.</xs:documentation> </xs:annotation> <xs:sequence> <xs:element name="Name" type="xs:string" minOccurs="0" /> <xs:element name="Angle" type="xs:string" minOccurs="0" /> <xs:element name="Size" type="xs:string" minOccurs="0" /> <xs:element name="ProductPhotoID" type="xs:integer" minOccurs="0" /> </xs:sequence> </xs:complexType> <xs:annotation> <xs:documentation>Features of the component that are more "sales" oriented.</xs:documentation> </xs:annotation> <xs:complexType name="Features" mixed="true" > <xs:sequence> <xs:element ref="wm:Warranty" /> <xs:element ref="wm:Maintenance" /> <xs:any processContents="skip" namespace="##other" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> <xs:complexType name="Specifications" mixed="true"> <xs:annotation> <xs:documentation>A single technical aspect of the component.</xs:documentation> </xs:annotation> <xs:sequence> <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> <xs:complexType name="Category"> <xs:annotation> <xs:documentation>A single categorization element that designates a classification taxonomy and a code within that classification type. Optional description for default display if needed.</xs:documentation> </xs:annotation> <xs:sequence> <xs:element ref="Taxonomy" /> <xs:element ref="Code" /> <xs:element ref="Description" minOccurs="0" /> </xs:sequence> </xs:complexType> <xs:element name="Taxonomy" type="xs:string" /> <xs:element name="Code" type="xs:string" /> <xs:element name="Description" type="xs:string" /> </xs:schema>';
  7. DLdbo
    primarykey
    data
    text
  8. DLdbo
    primarykey
    data
    text
  9. DLdbo
    primarykey
    data
    text
...and more
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload