• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






小石头st

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 2

2017年3月9日

删除重复数据
摘要: delete from 表 where id in (select id from (select max(id) as id,count(列) as count from 表group by 列 having count >1 order by count desc) as tab ) 阅读全文
posted @ 2017-03-09 15:08 小石头st 阅读(250) 评论(0) 推荐(0)
 
mysql 数据表中查找重复记录(条数)
摘要: SELECT 字段,COUNT(*) AS COUNT FROM 表名 GROUP BY 字段 HAVING COUNT>1; 阅读全文
posted @ 2017-03-09 10:31 小石头st 阅读(782) 评论(0) 推荐(0)
 

2017年3月5日

数组换位子
摘要: package com.test; import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader; /** *2017-3-5 下午4:35:40 * @param * @since 阅读全文
posted @ 2017-03-05 17:16 小石头st 阅读(168) 评论(0) 推荐(0)
 
常用String练习
摘要: package com.test; import java.util.Scanner; /** *2017-3-5 下午2:54:15 * @param * @since * @return */public class InterceptionStr {// 输入为一个字符串和字节数,输出为按字节 阅读全文
posted @ 2017-03-05 16:25 小石头st 阅读(116) 评论(0) 推荐(0)
 
RequestMappin
摘要: Spring MVC之@RequestMapping 详解 Spring MVC之@RequestMapping 详解 引言: 项目中用到了REST风格来开发程序,但是当用POST、PUT模式提交数据时,发现服务器端接受不到提交的数据(服务器端参数绑定没有加任何注解),查看了提交方式为applica 阅读全文
posted @ 2017-03-05 14:49 小石头st 阅读(729) 评论(0) 推荐(0)
 
maven
摘要: 在工作中,需要用到maven。在安装好maven后,在eclipse中安装maven插件时,却遇到了问题,总是提示安装失败。提示信息如下: Cannot complete the install because one ormore required items could not be found 阅读全文
posted @ 2017-03-05 09:34 小石头st 阅读(95) 评论(0) 推荐(0)
 

2017年2月28日

post测试
摘要: public class TestPost { public static void testPost() throws IOException { // 访问的接口地址 URL url = new URL( "http://........."); URLConnection connection 阅读全文
posted @ 2017-02-28 10:57 小石头st 阅读(282) 评论(0) 推荐(0)
 
上一页 1 2