multi-column index, is it slow ?

multi-column index, is it slow ?

am 27.01.2006 02:01:01 von awebguynow

If I use a multi-column index, is it ineffecient ? how much of a
performance hit ?

I'm creating an order table, that will have a city code as one of the
columns.
index will be ( orderID, city_code )

my other option is to use separate tables, and store the table name for
that city, in a PHP session variable.

comment ?