Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 SQL Manual » DDL Statements » CREATE INDEX |
CREATE INDEX <Name> ON <TableName>|<ViewName> (<ColumnName> [COLLATE <CollationName>] [[ASC|ASCENDING]|[DESC|DESCENDING]] [,<ColumnName>]) [DESCRIPTION <Description>] [NO BACKUP FILES]
-- The following statement creates a Name index on the -- Customer table consisting of the Name column in -- ascending order. CREATE INDEX "Name" ON "Customer" (Name ASC) -- The following statement creates a State index on the -- Customer table consisting of the State column in -- ascending order. CREATE INDEX "State" ON "Customer" (State ASC)
Deviation | Details |
Extension | This SQL statement is an ElevateDB extension. |
This web page was last updated on Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |