## 基本查询
查询一个数据使用:
~~~
// name方法必须指定完整的数据表名
this.$cloud.name('users').where('id',1).first();
~~~
> first 方法查询结果不存在,返回 null
查询数据集使用:
~~~
this.$cloud.name('users').where('id',1).select();
~~~
> select 方法查询结果不存在,返回空数组
> 默认情况下,find和select方法返回的都是数组。