nugh123
关注
5569 号成员,2016-12-16 14:54:12 加入
428
个人主页 浏览
  • Java 异步问题

    2016-12-29 16:36

    确实是这样的,应该加 volatile,多谢!

  • 求助:Sql 优化

    2016-12-29 11:37

    select count() from a inner join (select distinct a_id from b where b.flag in (123)) b on a.id = b.a_id
    另外 b.flag 加索引?

  • 求助:Sql 优化

    2016-12-29 11:04

    select count() from a where a. id in (select distinct a_id from b where b.flag in (123))