Say you had a long array of chars that are either 1 or 0, kind of like a bitvector, but on a database column. How would you query to know what values are set/no set? Say you need to know if the char 500 and char 1500 are "true" or not.
feedback
|
No index can be used for this kind of query, though. When you have many rows, this will get slow very quickly. Edit: On SQL Server at least, all built-in string functions are deterministic. That means you could look into the possibility to make computed columns based on the SUBSTRING() results for the whole combined value, putting an index on each of them. Inserts will be slower, table size will increase, but searches will be really fast.
Edit #2: The limits for SQL Server are:
| ||||
|
feedback
|
|
In MySQL, something using substring like
This will be pretty inefficient though, you might want to rethink your schema. For example, you could store each bit separately to tradeoff space for speed...
Which would be queried
Obviously consumes more storage, but should be faster for those query operations as an index will be used. | ||||
|
feedback
|
|
I would convert the column to multiple bit-columns and rewrite the relevant code - Bit masks are so much faster than string comparisons. But if you can't do that, you must use db-specific functions. Regular expressions could be an option
| |||
|
feedback
|
| |||
|
feedback
|