(a) Create an index trip index1 on trip name in the trip table.
Create index trip index1
On trip (trip name)
(b) Create index Trip index2 on type of trip table.
Create index trip index2
On trip (TYPE)
(c) Create index Trip index3 for last name, first name of table customer.
Create index trip index2
on customer
The syntax for creating indexes varies by database. Check the syntax for creating indexes in your database. Indexes can be created or dropped without affecting the data. Creating an index involves the Create index statement. This allows you to name the index specify the table and column to index and specify whether to arrange the index in ascending or descending order.
Learn more about An index here:-https://brainly.com/question/22930696
#SPJ4