摘要: 新博客地址https://www.jianshu.com/u/8e54644eafae 创建表时可以直接创建索引,这种方式最简单、方便。其基本形式如下: 其中,UNIQUE是可选参数,表示索引为唯一性索引;FULLTEXT是可选参数,表示索引为全文索引;SPATIAL也是可选参数,表示索引为空间索引 阅读全文
posted @ 2018-02-05 22:49 Wayfo 阅读(20059) 评论(0) 推荐(4) 编辑
摘要: /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this 阅读全文
posted @ 2018-02-05 22:05 Wayfo 阅读(393) 评论(0) 推荐(0) 编辑
摘要: import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar 阅读全文
posted @ 2018-02-05 21:00 Wayfo 阅读(3297) 评论(0) 推荐(0) 编辑
摘要: 关于类型转化问题: (1)String 》char / char[ ] (2)char / char[] 》String (3)int 》 String (4)String 》 int 注意: Integer.parseInt(s)转换的只能是数字字符串 阅读全文
posted @ 2018-02-05 20:42 Wayfo 阅读(180) 评论(0) 推荐(0) 编辑