In mysql values can be retrieved like less than a given value.
select * from table where number > 12. But using mysql will be slower, so planning to implement the same methodology but that should be very fast. Which data structure can be used? In my previous thread i have already asked about B Tree and got very good reply but now my planning is to implement the same methodology as used in mysql for key retrieval. Thanks in advance.
select * from table where number > 12. But using mysql will be slower, so planning to implement the same methodology but that should be very fast. Which data structure can be used? In my previous thread i have already asked about B Tree and got very good reply but now my planning is to implement the same methodology as used in mysql for key retrieval. Thanks in advance.
Comment