1.查看mysql版本号 MySQL [release_test_oa]> select version(); +------------+ | version() | +------------+ | 5.6.27-log | +------------+ 1 row in set (0.00 sec) 或者 MySQL [release_test_oa]> status; -------------- mysql Ver 15.1 Distrib 5.5.44-MariaDB, for L…
在工作中,有时,我们会用到oracle分页查询.这时,就需要先了解oracle的rownum.rowmun是oracle的伪列,只能用符号(<.<=.!=),而不能用这些符号(>,>=,=,between...and)比如我们要查询prpdriskconfig表,这条sql:select * from prpdriskconfig where configcode='UndwrtCollectFlow'总共有58条数据,我们现在只想要前50条数据,这是就需要用到rownum了. )…