Changes between Version 2 and Version 3 of DatabaseCleanup


Ignore:
Timestamp:
Apr 10, 2015, 2:03:31 PM (9 years ago)
Author:
casties
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DatabaseCleanup

    v2 v3  
    1414{{{
    1515select count(distinct node_type) as cnt, id from openmind.node
     16group by id
     17having cnt > 1
     18order by 1 desc;
     19}}}
     20
     21All entities with more than one object_class:
     22{{{
     23select count(distinct object_class) as cnt, id from openmind.node
    1624group by id
    1725having cnt > 1