.NET Zip component, Delphi Zip component, Barcode .NET, BDE Replacement and other .NET and Delphi components from ComponentAce
Products Download Order Contact us

Search
 

Delphi/C++ Components
.NET Components
ActiveX Controls
Kylix Components

Download

Download
Download Commercial
Trial Limitations

Support

Submit Request
Support Options

Order

Purchase
Competitive Upgrade
Premium Support
Sales Policy
Upgrade Policy
License Types

Info

News
Mailing List
Articles
Testimonials



About Us
Partners
Links
Contact Us
Link to Us





Home > Delphi/C++ Components > Absolute Database > Create Index SQL Example

Absolute Database

Overview | Features | Requirements | Testimonials | SQL Samples | Code Samples | Screenshots | See Also | Download | Order
Create Index SQL Example
This sample illustrates use of CREATE INDEX statement.
This SQL script contains five queries.
First one deletes table named "developers".
The second creates this table with 3 fields.
The third query inserts some data into the table.
The fourth creates index so that "name"+"code" combination must be unique, for field "name" sorting order is descending and is case-insensitive. The new index is given name "UniqueName".
The fifth query retrieves all rows from this table.

drop table developers;
create table developers (
id AutoInc, 
Code Integer, 
Name varchar(20)
);
insert into developers (code, name) values (2, 'Janet');
create unique index UniqueName ON  developers (name desc nocase, code);
select * from developers;

Download Absolute Database | Learn more


Product Info


Current version: 7.95
Released: February 08, 2023
Price: $ 149

downloadorder


Our Customers



Testimonials

I don't think I've ever had a better support experience in regard to any of the 3rd party tools we use.

Tim Stickley

        © 2003 - 2024 ComponentAce  | .net zip component | barcode for .net | delphi zip component | delphi database Mar 28, 2024