会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
mandy22
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
2017年12月19日
MySQL 正则表达式--转自菜鸟教程
摘要: MySQL 正则表达式 在前面的章节我们已经了解到MySQL可以通过 LIKE ...% 来进行模糊匹配。 MySQL 同样也支持其他正则表达式的匹配, MySQL中使用 REGEXP 操作符来进行正则表达式匹配。 如果您了解PHP或Perl,那么操作起来就非常简单,因为MySQL的正则表达式匹配与
阅读全文
posted @ 2017-12-19 23:53 mandy22
阅读(352)
评论(0)
推荐(0)
编辑
mysql事务处理用法与实例详解
摘要: 来源:转载 MySQL的事务支持不是绑定在MySQL服务器本身,而是与存储引擎相关1.MyISAM:不支持事务,用于只读程序提高性能 2.InnoDB:支持ACID事务、行级锁、并发 3.Berkeley DB:支持事务 MySQL的事务支持不是绑定在MySQL服务器本身,而是与存储引擎相关1.My
阅读全文
posted @ 2017-12-19 23:24 mandy22
阅读(4503)
评论(0)
推荐(0)
编辑
使用POI读写Excel
摘要: 1. POI 中主要提供的读写 Microsoft Office 功能点如下: 2. 官网样例:http://poi.apache.org/spreadsheet/examples.html#hssf-only
阅读全文
posted @ 2017-12-19 23:15 mandy22
阅读(309)
评论(0)
推荐(0)
编辑
复制表结构
摘要: 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
阅读(2873)
评论(0)
推荐(0)
编辑
公告