what is Complex index. how to create it?
Answers were Sorted based on User's Feedback
Answer / reddibasha
Do you mean Composite Index?
Composite index is the index created on multiple columns of
a table. A maximum of 16 columns can be used as a composite
index. It can be created at table level only. Unique,
Primary Key and Foreign Key can be composite keys.
Ex:
Create table emp
(eno number,
ename varchar(5),
dob date,
sal number,
dno number,
Primary Key(eno, ename) -- Composite Index
);
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / naren patidar
In cluster data of two table store in one object(cluster)
that generates a index that can identify rows of both of
table..
naren
| Is This Answer Correct ? | 1 Yes | 1 No |
What are the modes of parameters that can be passed to a procedure ?
What is a scalar value in sql?
what is a constraint? : Sql dba
What is the difference between a query and a report?
How to write a query to show the details of a student from students table whose
SELECT category, type, AVG(price) FROM products GROUP BY category, type ORDER BY 1, 2 If there are three distinct categories in the "products" table, and each one has five different types, how many rows are returned by the query above? 1. 1 row 2. 3 rows 3. 5 rows 4. 8 rows 5. 15 rows
What is a merge query?
What is pl/sql and what is it used for?
What if we write return in procedure?
What is triggering circuit?
what is try_catch block in procedure
How do you delete a table?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)