Search Results

0
votes

Is it better to join two fields together, or to compare them each to the same constant?

I suspect this is going to depend on the tables, the data and the meta-data. I expect I could work up examples that would show results both ways - benchmark! …
2
votes

Difference between drop table and truncate table?

truncate removes all the rows, but not the table itself, it is essentially equivalent to deleting with no where clause, but usually faster. …
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. …