查詢單個數據使用`find`方法:
```php
//table方法如果未配置 數據庫表前綴 則必須指定完整的數據表名
Db::table('oreo_user')->where('id',1)->find();
```
查詢多個數據(數據集)使用`all`方法:
```php
Db::table('oreo_user')->where('status',1)->all();
```
如果設置了數據表前綴參數的話,可以使用
```php
Db::table('user')->where('id',1)->find();
Db::table('user')->where('status',1)->all();
```
當然數據庫操作的過程中我們已經提供了參數綁定,但你也可以手動操作參數綁定
```php
Db::table('oreo_user')->where('id=:id')->bind(':id','1')->find();
```