Fixed Typos

This commit is contained in:
Christian Risi 2025-09-25 12:37:52 +02:00
parent f28952b0a2
commit 0bc7f4b227

View File

@ -142,11 +142,12 @@ FROM Objects
-- Subject Count -- Subject Count
CREATE VIEW IF NOT EXISTS SubectsCountInRDFs CREATE VIEW IF NOT EXISTS SubjectsCountInRDFs
AS AS
SELECT SubectID, count(SubectID) as Sub_Count SELECT SubjectID, count(SubjectID) as Sub_Count
FROM RDFs FROM RDFs
GROUP BY SubectID GROUP BY SubjectID;