Changes between Version 1 and Version 2 of DatabaseCleanup


Ignore:
Timestamp:
Apr 9, 2015, 2:04:59 PM (9 years ago)
Author:
casties
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DatabaseCleanup

    v1 v2  
    99having cnt > 1
    1010order by cnt desc;
     11}}}
     12
     13All entities with more than one node_type:
     14{{{
     15select count(distinct node_type) as cnt, id from openmind.node
     16group by id
     17having cnt > 1
     18order by 1 desc;
    1119}}}
    1220