We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c951e commit aef09d3Copy full SHA for aef09d3
README.md
@@ -41,14 +41,6 @@ WHERE path_view.path = CONCAT('/article/', author_info.slug)
41
ORDER BY author_info.name;
42
```
43
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
-
52
```sql
53
CREATE VIEW total_view AS
54
SELECT date(time), COUNT(*) AS views
@@ -73,7 +65,6 @@ WHERE total_view.date = error_view.date
73
65
ORDER BY total_view.date;
74
66
75
67
76
77
68
### Drop Views
78
69
79
70
DROP VIEW
0 commit comments