1 Star 0 Fork 42

cain/jblog

forked from newflydd/jblog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
view.sql 747 Bytes
一键复制 编辑 原始数据 按行查看 历史
newflypig 提交于 2016-08-24 20:57 . 2016年8月24日20:57:05
/* 两个关键的视图定义,导出SQL时可能有其他无关信息影响阅读,这边给出了阅读级的SQL */
CREATE OR REPLACE VIEW jblog_tags_v
AS select jt.id AS id,
jt.title AS title,
count(jat.jblog_tags_id) AS count
from jblog_tags_t jt
left join jblog_article_tags jat on jt.id = jat.jblog_tags_id
group by jt.id;
CREATE OR REPLACE VIEW jblog_archive_v
AS select archive.id AS id,
archive.title AS title,
archive.url_name AS url_name,
count(article.id) AS count
from jblog_archive_t archive
left join (
select * from jblog_article ja
where ja.type = 0
and ja.state = 1
) as article on archive.id = article.archive_id
group by archive.id;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/cainchao/jblog.git
git@gitee.com:cainchao/jblog.git
cainchao
jblog
jblog
jblog2-3

搜索帮助