发布网友 发布时间:2022-04-22 12:41
共2个回答
热心网友 时间:2023-11-04 20:51
--把tableA 中sign值为package 赋值给tableB update b set b.sign=a.sign from tableA a,tableB b where a.order_id=b.order_id and a.sign='package' --统计数量 select count(*) as 数量 from tableB where sign='package'
热心网友 时间:2023-11-04 20:52
你可以使用withCount()方法试一下
$posts = Post::withCount(['votes', 'comments' => function ($query) {