sqlite PRAGMA reverse_unordered_selects 的作用

前端之家收集整理的这篇文章主要介绍了sqlite PRAGMA reverse_unordered_selects 的作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
sqlite> select * from z; //原始顺序 1|100 1|150 3|300 9|900 8|800 sqlite> PRAGMA reverse_unordered_selects=1;//反转原始顺序 sqlite> select * from z; 8|800 9|900 3|300 1|150 1|100 sqlite> 原文链接:https://www.f2er.com/sqlite/202593.html

猜你在找的Sqlite相关文章