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.

here can set number of visible records query:


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -