## 基本查詢
查詢一個數據使用:
~~~
// name方法必須指定完整的數據表名
this.$cloud.name('users').where('id',1).first();
~~~
> first 方法查詢結果不存在,返回 null
查詢數據集使用:
~~~
this.$cloud.name('users').where('id',1).select();
~~~
> select 方法查詢結果不存在,返回空數組
> 默認情況下,find和select方法返回的都是數組。