上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 37 下一页
摘要: CREATE PROCEDURE `test_insert_stu`() BEGIN DECLARE num INT; SET num = 0; WHILE (num<10) DO insert into test_student_info(name) values(concat('zb',num)); set num=num+1; END WHILE; END 阅读全文
posted @ 2016-10-12 14:39 梦见舟 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 例子如下: 阅读全文
posted @ 2016-10-12 14:06 梦见舟 阅读(625) 评论(0) 推荐(0) 编辑
摘要: mysql> SELECT 1+1; # This comment continues to the end of line mysql> SELECT 1+1; -- This comment continues to the end of line /* this is an in-line comment */ 阅读全文
posted @ 2016-10-12 13:55 梦见舟 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 1. web http://www.w3school.com.cn 2. mysql http://dev.mysql.com/doc/ 3. java java programmhttp://www.programcreek.com java virtual Machine specificati 阅读全文
posted @ 2016-10-11 13:36 梦见舟 阅读(71) 评论(0) 推荐(0) 编辑
摘要: Project [Alt+1]Version Control [Alt+9]Run [Ctrl+Shift+F10]Debug [Ctrl+Shift+F11]Terminal [Alt+F12]Editor [Escape]Move the current line of code [Ctrl+S 阅读全文
posted @ 2016-10-11 09:32 梦见舟 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 错误日志如下: 十月 10, 2016 10:44:57 上午 org.apache.catalina.core.StandardWrapperValve invoke严重: Servlet.service() for servlet [jsp] in context with path [] th 阅读全文
posted @ 2016-10-10 10:51 梦见舟 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 主要使用到mybatis中的标签 使用的标签如下: OK 阅读全文
posted @ 2016-10-10 09:13 梦见舟 阅读(496) 评论(0) 推荐(0) 编辑
摘要: The information below i get from http://dev.mysql.com/doc/refman/8.0/en/optimize-overview.html Optimization at the database level Database performance 阅读全文
posted @ 2016-10-08 17:39 梦见舟 阅读(180) 评论(0) 推荐(0) 编辑
摘要: mybatis 的源代码地址是https://github.com/mybatis/mybatis-3/ 以及相关文档 All the information i get from http://www.mybatis.org/mybatis-3/index.html MyBatis SQL Map 阅读全文
posted @ 2016-10-08 15:42 梦见舟 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 常正则表达式: http://www.techug.com/20-good-regex git 手册 https://git-scm.com/book/zh/ch3-2.html 阅读全文
posted @ 2016-09-03 15:10 梦见舟 阅读(133) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 37 下一页