.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 > Drop Index SQL Example

Absolute Database

Overview | Features | Requirements | Testimonials | SQL Samples | Code Samples | Screenshots | See Also | Download | Order
Drop Index SQL Example
This sample illustrates use of DROP INDEX statement.
This SQL script contains six queries.
First one deletes table named "developers".
The second creates this table with 3 fields.
Query #3 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 deletes index "UniqueName" from table "developers".
The sixth 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);
drop index developers.UniqueName;
select * from developers;

Download Absolute Database | Learn more


Product Info


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

downloadorder


Our Customers



Testimonials

The other people in the office didn't believe me when I said that all I had to do was document the problem and you would probably give me a fix overnight. Unbelievable! Keep up the great work. I hope you guys all make a fortune out of this product because it is truly fantastic and the support is the best I have ever encountered.

Mark Kefford

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