码迷,mamicode.com
首页 >  
搜索关键字:egexp like    ( 7616个结果
Easier Done Than Said?
Problem DescriptionPassword security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are o...
分类:其他好文   时间:2014-11-10 13:34:20    阅读次数:189
MySQL获得指定数据表中auto_increment自增id值的方法及实例
http://kb.cnblogs.com/a/2357592/很多情况下,我们要提前用到当前某个表的auto_increment自增列id,可以通过执行sql语句来查询到这个id值。show table status where name=’表名’或者show table status like ...
分类:数据库   时间:2014-11-09 09:44:22    阅读次数:132
关于mysql的表名/字段名/字段值是否区分大小写的问题
http://www.2cto.com/database/201202/121253.html1、mysql默认情况下是否区分大小写,使用show Variables like '%table_names'查看lower_case_table_names的值,0代表区分,1代表不区分。2、mysql...
分类:数据库   时间:2014-11-09 09:43:04    阅读次数:171
mysql复制表命令
http://hi.baidu.com/dwspider/item/908bf5e1746275bd2e140b03上面命令是实现复制表的一种方法,缺陷就是索引等表信息不会复制过去,只是复制了表字段而已。这种方法,表信息完全复制create table new_table like old_tabl...
分类:数据库   时间:2014-11-09 09:41:32    阅读次数:178
UVA 10115 Automatic Editing(字符处理)
Text-processing tools like awk and sed allow you to automatically perform a sequence of editing operations based on a script. For this problem we consider the specific case in which we want to perfo...
分类:其他好文   时间:2014-11-08 07:07:41    阅读次数:215
leetcode 6. ZigZag Conversion
The string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font fo...
分类:其他好文   时间:2014-11-07 23:24:24    阅读次数:265
数据库操作基本操作
1.登录数据库系统mysql –h localhost –u root -p2.查看已存在的数据库SHOW DATABASES;3.查看默认存储引擎SHOW VARIABLES LIKE 'storage_engine';4.创建数据库CREATE DATABASE school;5.删除数据...
分类:数据库   时间:2014-11-07 20:42:19    阅读次数:164
python 中exception,class学习
python 中exception,class 学习instroduction:Object2 = Object1 ( like java)if Object1 is class object , then copy by reference;if Object1 is basic type, th...
分类:编程语言   时间:2014-11-07 20:29:45    阅读次数:181
MySQL设置编码
MySQL设置编码 版本mysql-5.6.21-winx64 mysql默认的编码: mysql>?SHOW?VARIABLES?LIKE?‘character%‘; +--------------------------+---------------------------------------------+ |?Variable_name???...
分类:数据库   时间:2014-11-07 19:24:37    阅读次数:160
SAP ABAP编程 Ranges用法
在SAP中,有时候需要把单值的结构变成区间的结构,也就是类似SELECTION-OPTION的功能,SAP提供了RANGES来实现该功能. (SAP 中SELECTION-OPTION 是个很强大的功能,在程序中也经常需要类似SELECTION-OPTION的功能,如果不画屏幕的话,SAP提供了RANGE来实现该功能) 实例如下: DATA: table_t LIKE TABLE OF spfli, table_wa LIKE spfli. RANGES:g_ranges FOR spfli-...
分类:其他好文   时间:2014-11-07 17:02:08    阅读次数:1084
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!