I am define all my tables with sql statements. I can't seem to get the syntax right to create a NON Case Sensitive key. My code is
Create UNIQUE INDEX ByDesc in dictionary ON Zones (ZoneDescription NO CASE,PubNumber,ZoneCode) #
Do I use NO CASE or is there something else I have missed? If I use NO CASE, where does it go in the above so that the ZoneDescription is treated with regard to case?
Thanks.
Create UNIQUE INDEX ByDesc in dictionary ON Zones (ZoneDescription NO CASE,PubNumber,ZoneCode) #
Do I use NO CASE or is there something else I have missed? If I use NO CASE, where does it go in the above so that the ZoneDescription is treated with regard to case?
Thanks.