I need to add some columns to a client's existing free table. Adding the columns is straight forward enough ....
but how do I add indexes to these columns?
The manual gives this example
but What are the values of:-
- eExpression3
- lExpression4
- TagName2
Keith
Code:
alter table z:/data/customer add column invites L
but how do I add indexes to these columns?
The manual gives this example
Code:
ADD PRIMARY KEY eExpression3 [FOR lExpression4] TAG TagName2
but What are the values of:-
- eExpression3
- lExpression4
- TagName2
Keith