首页 \ 问答 \ 存储过程计数在计数中具有ID号的行数(Stored procedure count number of rows with id numbers in the count)

存储过程计数在计数中具有ID号的行数(Stored procedure count number of rows with id numbers in the count)

我想要计算带有ID的索赔总数。

SELECT   
    InsuranceId,Name,
    COUNT(claimid) AS TotalPendingClaims
FROM 
    Claim 
GROUP BY
    InsuranceId

这是我的查询,但我想获得在上述查询中计算的claimid 。 我需要列claimIds=(1,2,4,5)

预期结果:

InsuranceId  Name TotalPendingClaims  ClaimIds
-----------------------------------------------
1            Med     2                  23,24
2            TX      1                   55
3            TED     3                  44,45,46

I want to get count total numbers of claims with the ID.

SELECT   
    InsuranceId,Name,
    COUNT(claimid) AS TotalPendingClaims
FROM 
    Claim 
GROUP BY
    InsuranceId

This is my query, but I want to get claimid also which is counted in the above query. I need column claimIds=(1,2,4,5)

Expected result:

InsuranceId  Name TotalPendingClaims  ClaimIds
-----------------------------------------------
1            Med     2                  23,24
2            TX      1                   55
3            TED     3                  44,45,46

原文:https://stackoverflow.com/questions/47785520
更新时间:2023-07-06 20:07

最满意答案

当使用Laravel提供的LoginController类时,它会检查:

protected function attemptLogin(Request $request)
{
    return $this->guard()->attempt(
        $this->credentials($request), $request->has('remember')
    );
}

只需在您的请求中加入“ remember ”,即可记住用户登录信息。


When using the LoginController class provided by Laravel, it does this check:

protected function attemptLogin(Request $request)
{
    return $this->guard()->attempt(
        $this->credentials($request), $request->has('remember')
    );
}

Simply include 'remember' to your request, to remember the user login.

相关问答

更多
  • 请更新laravel / framework到5.2.27并备份你的Auth\AuthController (如果你有任何改变),然后发出一个php artisan make:auth来替换现有的laravel生成的auth特性文件和最新的bug修复副本。 看看这是否解决了你的auth会话不是持久性问题 I'm found solution . problem with routes... session not sign in my prev solution... but this correct. R ...
  • 它不在文档中,但如果你看一下代码; public function login(UserInterface $user, $remember = false) 所以就这么做 Auth::login($user, true); It is not in the docs, but if you look at the code; public function login(UserInterface $user, $remember = false) So just do Auth::login($us ...
  • 尝试将boolean值作为第二个参数传递给方法尝试,或者 if (Auth::viaRemember()) { // } 在新的laravel版本中使用viaRemember 另外,检查你的config / session.php设置 'lifetime' => 10080, 'expire_on_close' => true, 只需将expire_on_close设置为true ,使用Auth::viaRemember()设置Auth::viaRemember() 希望这是有帮助的 Try pa ...
  • 尝试将您的data参数更改为: data : { username: username, password: password, remember: remember ? 'true' : 'false', token: token }, 然后jQuery将正确编码参数。 您的表单被提交两次的原因可能是因为在userLogin()返回后正常表单提交。 将提交按钮更改为:
    如果您使用记住我,Laravel会在下次访问该页面时使用用于登录您的令牌的cookie(如果您以某种方式退出,我将在稍后解释)。 Laravel默认使用有效期为2小时的会话(您可以在配置中设置),因此如果您在登录时关闭浏览器,然后尝试在2小时的窗口中再次打开相同的浏览器,服务器将不会注意到更改。 “以某种方式注销” 很明显,通过单击应用程序中的注销 通过浏览器本身或第三方程序清除浏览器缓存 使用不同的浏览器(这只是为了澄清) 使用隐身模式(这只是为了澄清) 使用不同的计算机和浏览器没有同步功能(这是为了澄清 ...
  • 在php.ini设置中禁用了pdo_mysql扩展 解决 The pdo_mysql extension was disabled in php.ini settings Resolved
  • 当使用Laravel提供的LoginController类时,它会检查: protected function attemptLogin(Request $request) { return $this->guard()->attempt( $this->credentials($request), $request->has('remember') ); } 只需在您的请求中加入“ remember ”,即可记住用户登录信息。 When using the LoginCo ...
  • 更改响应错误的格式 return response()->json(['error'=>'Sorry User not found.']); 至 return response()->json([ 'error' => [ 'email' => 'Sorry User not found.' ] ]); Change the format of the response error from return response()->json(['error'=>'Sorry ...
  • 这是一个中间件问题。 public function handle($request, Closure $next, $guard = null) { if (Auth::guard($guard)->check()) { //return redirect('/home'); } return $next($request); } 在, app/Http/Middleware/RedirectIfAuthentic ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)