...
There is one table that likely didn’t have it’s related records removed. Browse through the weather
table looking for records with a related setName
. The example below looks for records created by the Community reader.
Code Block | ||
---|---|---|
| ||
SELECT * FROM weather where setname = 'Community'; |
...