|
|
2 年之前 | |
|---|---|---|
| app | 2 年之前 | |
| bootstrap | 2 年之前 | |
| config | 2 年之前 | |
| database | 2 年之前 | |
| public | 2 年之前 | |
| resources | 2 年之前 | |
| routes | 2 年之前 | |
| storage | 2 年之前 | |
| tests | 2 年之前 | |
| .editorconfig | 2 年之前 | |
| .env.example | 2 年之前 | |
| .gitattributes | 2 年之前 | |
| .gitignore | 2 年之前 | |
| .styleci.yml | 2 年之前 | |
| README.md | 2 年之前 | |
| artisan | 2 年之前 | |
| composer.json | 2 年之前 | |
| package.json | 2 年之前 | |
| phpunit.xml | 2 年之前 | |
| server.php | 2 年之前 | |
| webpack.mix.js | 2 年之前 |
查询书籍排序重复的问题
select bid,count(*) from chapters WHERE sequence = 1 group by bid having count(bid)>1;
查询书籍完本统计
SELECT COUNT(*), `status` FROM books GROUP BY `status`;