PDF (US Ltr) - 1.4Mb
PDF (A4) - 1.4Mb
定义字符串表达式很简单,因为它们易于阅读和编写。缺点是它们需要在传输到 MySQL 服务器之前进行解析。此外,类型检查只能在运行时进行。所有实现都可以使用此处所示的语法,该语法显示为 MySQL Shell JavaScript 代码。
// Using a string expression to get all documents that
// have the name field starting with 'S'
var myDocs = myColl.find('name like :name').bind('name', 'S%').execute();