问题描述 怎么使用原生SQL语句呢,现在的查询 $orders = Db::table('orders') ->selectRaw('desc ?', '1234') ->get(); 需要指定table。 但我需要查询某个表的所有属性,如何做呢? $sql="desc 123456";...