Question: write a create index statement Considering the following example of a CREATE INDEX statement, and the 'customer' table definition shown below, write a similar statement
write a create index statement
Considering the following example of a CREATE INDEX statement, and the 'customer' table definition shown below, write a similar statement which will add/create an index for this table in order to improve its access performance, given that a lot of the user queries look up the customers emails. CREATE INDEX empid_idx ON Employee (empid); PK customer customer_id first_name last_name email CHAR VARCHAR VARCHAR VARCHAR
Step by Step Solution
3.43 Rating (153 Votes )
There are 3 Steps involved in it
To improve access performance for the customer table when many user queries involve looking up ... View full answer
Get step-by-step solutions from verified subject matter experts
