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