|
|
|
|
|
by toast0
2721 days ago
|
|
The motivations are strong here. You want your database to be as sane as possible. But this will make some features really hard, if you need them. Pagination based on sorted values subject to collation wouldn't be queryable, you would need to either get all the data and sort it, or query for a key and the sorted column, sort and then query for details on the displayed items. Selecting a range would also be potentially difficult. |
|