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