如何使用Laravel查询从数据库中获取一定数量的字符?
我有如下查询
return $company->employee()->with('motorCycle', 'children')->get();
有一列名为motorCycle.text
。我想从该字段中获取500个字符。
我该怎么做?
答案 0 :(得分:1)
我不知道您的表结构,并且 pk和其他列必须指定您自己。查看相关的SQL查询How can I select the first 100 characters in SQL Server?
float