12 lines
258 B
Markdown
12 lines
258 B
Markdown
---
|
|
tags:
|
|
- databases
|
|
---
|
|
|
|
```dataview
|
|
table without id file.link as Book, author as Author, year as Year, rating as Rating, created as Added, genre as Genre
|
|
from #books
|
|
where !contains(file.name, "Template") and rating > 5
|
|
sort rating desc, date asc
|
|
```
|