Skip to content

Commit

Permalink
Update 2024-03-28-in-praise-of-rdf.md
Browse files Browse the repository at this point in the history
  • Loading branch information
semihsalihoglu-uw authored May 4, 2024
1 parent 4f24d98 commit f3ac372
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 f3ac372

Please sign in to comment.