Skip to content

Commit aef09d3

Browse files
authored
Create README.md
1 parent c0c951e commit aef09d3

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,6 @@ WHERE path_view.path = CONCAT('/article/', author_info.slug)
4141
ORDER BY author_info.name;
4242
```
4343

44-
```sql
45-
CREATE VIEW author_view AS
46-
SELECT article_view.name, SUM(article_view.view) AS author_view
47-
FROM article_view
48-
GROUP BY article_view.name
49-
ORDER BY author_view DESC;
50-
```
51-
5244
```sql
5345
CREATE VIEW total_view AS
5446
SELECT date(time), COUNT(*) AS views
@@ -73,7 +65,6 @@ WHERE total_view.date = error_view.date
7365
ORDER BY total_view.date;
7466
```
7567

76-
7768
### Drop Views
7869
```sql
7970
DROP VIEW

0 commit comments

Comments
 (0)