20190912 练习

    1. 查询  ac01_ylwcb_lwjc_xf 表 不在  ac01_430000110,ac01_430000120,ac01_430000150 中且不在这三张表中的各个地区(aaa027)的数据量有多少

     select    substr( aaa027,1,4) ,count(*)  from    ac01_ylwcb_lwjc_xf    where  aac002  not in (select    aac002    from    ac01_430000110   union   SELECT    aac002      FROM  ac01_430000120   union    SELECT   aac002  FROM  ac01_430000150)
  group  by   substr( aaa027,1,4) 

 

2.mongodb的重启执行命令:  ./bin/mongod --dbpath   /home/m17/   --logpath  /home/mlog/m17.log     --fork  --port  27017  

 

 

 

 

你可能感兴趣的:(20190912 练习)