摘要:
如果登录用户的默认schema就是表的schema,那么查询时直接用select fields from table就行; 如果登录用户的默认schema不是表的schema,那么要查询到结果,必须用select fields from schema.table,否则会报表不存在的SQLExcept 阅读全文
摘要:
【结论】 位运算稍快一点点。 【代码】 package com.hy.lab.bitcalc; public class Test { public static void main(String[] args){ final int max=1000000000; int oddCnt=0; lo 阅读全文