# [轮子]Sutando
@ps 出自日本漫画《JOJO 的奇妙冒险》中的替身(Stand)
深受 Laravel 框架的 ORM Eloquent 启发
const users = await db.table('users')
.join('contacts', 'users.id', '=', 'contacts.user_id')
.join('orders', 'users.id', '=', 'orders.user_id')
.select('users.*', 'contacts.phone', 'orders.price')
.get();