Search Results

3
votes

What are the different types of indexes, what are the benefits of each?

I'll add a couple of index types BITMAP - when you have very low number of different possible values, very fast and doesn't take up much space PARTITIONED - allows the index to b …
0
votes

Sql design problem - items in multiple sections

You need a third table, called a junction table, that provides the N to N relationship with 2 foreign keys pointing at the parent tables. …