Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Oriento Query Builder (Oriento、node.js 用の OrientDB ドライバーの一部) を使用して、OrientDB ドキュメントから次の例を作成するにはどうすればよいですか?
select name.toLowerCase() == 'luke' from Actors
助けてくれてありがとう。
db.select().from('Actors').where('name.toLowerCase() = :name').addParam('name', 'luke').all();