会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
mandy22
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
上一页
1
2
2017年12月19日
复制表结构
摘要: 1. 仅复制表结构: create table new_table like old_table 或 create table new_table select * from old_table where 1 =2 2. 复制表结构 及内容: create table new_table sele
阅读全文
posted @ 2017-12-19 23:12 mandy22
阅读(298)
评论(0)
推荐(0)
编辑
表变量。 declare table @t_var
摘要: 1. 声明表变量:declare table @tablename(columnname type), 如: declare table @t(id int); 2. 把查询 结果插入表变量中: insert into @t.columnname select id from table1, 把ta
阅读全文
posted @ 2017-12-19 23:01 mandy22
阅读(1817)
评论(0)
推荐(0)
编辑
给mysql数据库字段值拼接前缀或后缀。 concat()函数
摘要: 加前缀: update 表名 set 列名 = concat(‘前缀’,列名), 如: update t_table set name = concat(‘abc’, name'), name 列中每个值前面拼接abc 加后缀: update 表名 set 列名 = concat(列名,‘后缀’),
阅读全文
posted @ 2017-12-19 22:55 mandy22
阅读(2872)
评论(0)
推荐(0)
编辑
2017年12月18日
将数据库中的数据转换成Json
摘要: 1 import java.sql.*; 2 import java.util.*; 3 import org.json.*;//引入相关包,包含在json.jar里 4 5 public class SqlJsonConvertor { 6 public static void main(String[] args) { 7 String driver = "com.m...
阅读全文
posted @ 2017-12-18 01:31 mandy22
阅读(7283)
评论(0)
推荐(0)
编辑
比较两个json 是否相等
摘要: 1 //方法一 2 import com.google.gson.JsonObject; 3 import com.google.gson.JsonParser; 4 5 6 JsonParser parser = new JsonParser(); 7 JsonObject o...
阅读全文
posted @ 2017-12-18 00:08 mandy22
阅读(3974)
评论(0)
推荐(0)
编辑
2017年12月17日
Java操作mysql 数据库
摘要: 1 package comparejsonandmysql; 2 3 import java.sql.*; 4 import java.text.DateFormat; 5 import java.text.ParseException; 6 import java.text.SimpleDateFormat; 7 import java.util.*; 8 9 10 p...
阅读全文
posted @ 2017-12-17 21:33 mandy22
阅读(308)
评论(0)
推荐(0)
编辑
上一页
1
2
公告