So I have a simple database with a table that has multiple column, most of which are of string type, one of which is a Boolean type.
My problem occurs when I update a row changing the boolean state, the database re-organizes its self to let the values with a false state be first and the values with the true state to be last in the table.
Is there a way to tell the table not to order the table either while each row is being updated or while the actual table is being created?
Thanks again!