Skip to content

Commit

Permalink
Merge pull request #58 from kuzudb/semihsalihoglu-uw-patch-1
Browse files Browse the repository at this point in the history
Update 2024-03-28-in-praise-of-rdf.md
  • Loading branch information
prrao87 committed May 5, 2024
2 parents a62e211 + f3ac372 commit accf06b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/content/post/2024-03-28-in-praise-of-rdf.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,8 @@ example, and Allemang and Hendler's book has many others. Suppose another depart
about some products storing information about the merchants who sell them. Let's suppose this database
contains the following triples:
```turtle
<md:Prod123, sd:merchant, md:MerchantA>
<md:Prod123, sd:merchant, md:MerchantB>
<md:Prod123, md:merchant, md:MerchantA>
<md:Prod123, md:merchant, md:MerchantB>
<md:MerchantA, md:locatedIn, md:Waterloo>
...
```
Expand All @@ -414,7 +414,7 @@ Then, suppose you ask the following query to a DBMS that implements the OWL stan

```sparql
SELECT ?merchant WHERE {
gc:Levis-511 sd:merchant ?merchant
gc:Levis-511 md:merchant ?merchant
}
```

Expand Down

0 comments on commit accf06b

Please sign in to comment.