Viewing 5 posts - 1 through 5 (of 5 total)
Creating an index is pretty easy.
CREATE INDEX index_name
ON table_name (field_to_index)
Is this what you were looking for?
Caz
June 27, 2011 at 9:52 pm
Heya... I would look further into your database design.
There are things called primary keys, with the way you have set this your table2 looks something like a lookup table which...
June 21, 2011 at 4:45 pm
Craig wins it...
There is an issue in parsing upper and lower case and collation.
Regardless... sitting down with a database plan cures all!!
Caz
June 20, 2011 at 5:24 pm
Yo,
With only that information you have given me I am gonna put money on the select DISTINCT is the issue - SQL normally works top to bottom hence the sequential...
June 20, 2011 at 4:51 pm
I have a sideways solution to this.
I just made a heap of datasets, one for each piece of data I wanted to represent and then edited this query slightly each...
July 15, 2010 at 9:05 pm
Viewing 5 posts - 1 through 5 (of 5 total)