`alias`用于設置當前數據表的別名,便于使用其他的連貫操作例如join方法等。
示例:
```php
Db::table('oreo_user')
->alias('a')
->join('oreo_wx b','b.user_id= a.id')
->all();
```
執行的SQL相當于:
```mysql
select * from oreo_oreo_user AS a inner join oreo_wx b on b.user_id= a.id
```
當讓這里的join方法我們在后面繼續講