程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql如果存在id則設數據自增加1,不存在則添加。java月份計算比較

mysql如果存在id則設數據自增加1,不存在則添加。java月份計算比較

編輯:MySQL綜合教程

mysql如果存在id則設數據自增加1,不存在則添加。java月份計算比較


</pre><pre name="code" class="sql">INSERT INTO invite_rejectlog_num (
	player_id,
	MONTH,
	count,
	last_modify_time
	)
	VALUES (#{playerId},#{month},#{count},#{lastModifyTime})
	ON DUPLICATE KEY UPDATE count=count+1;

需要唯一約束 id和月份

ava月份計算比較

Calendar calDelM = Calendar.getInstance();
		calDelM.set(Calendar.MONTH, 0);
		System.out.println(calDelM.get(Calendar.MONTH));
		
		calDelM.add(Calendar.MONTH, -1);
		System.out.println(calDelM.get(Calendar.MONTH));

		
		
		
		// ix 遍歷需要刪除的月份
		int isdel = calDelM.get(Calendar.MONTH);
		int ix = 8;// 緩存最小月份

		Calendar calDelM2 = Calendar.getInstance();
		calDelM2.set(Calendar.MONTH, ix);
		ix = calDelM2.get(Calendar.MONTH);

	
		// ix<isdel
		Calendar calDelM3 = Calendar.getInstance();
		calDelM3.set(Calendar.MONTH, calDelM.get(Calendar.MONTH));

	

		for (; calDelM2.compareTo(calDelM3) != -1;) {

			System.out.println("================");
			System.out.println("calDelM2:" + calDelM2.get(Calendar.MONTH) + "  "
					+ "  calDelM:" + calDelM.get(Calendar.MONTH)+ "  calDelM3: " + calDelM3.get(Calendar.MONTH));
			System.out.println(calDelM2.compareTo(calDelM3));

			calDelM.add(Calendar.MONTH, -1);
			isdel = calDelM.get(Calendar.MONTH);
			calDelM3.set(Calendar.MONTH, calDelM.get(Calendar.MONTH));

			System.out.println("del:" + isdel);
			System.out.println("================");
		}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved