sql like - orientdb select does not return all vertices -
i'm using orientdb studio creating vertices type (nodetype1). created 29 vertices using orientdb studio , when run:
select count(*) nodetype1
i 29 records.
however, when run:
select * nodetype1
i list of 20 records.
has encountered before?
you see 20 records because orientdb shows 20 default. if want see more, can write:
select * nodetype1 limit -1
this way, can see records.
Comments
Post a Comment