例: 表 test的 create_time 为 timestamp 类型. 创建create_time 索引 执行 select * from test create_time = ‘2014-10-17‘ 。possible_keys 为 null 执行 select * from test create_time = ‘20141017000000‘ ...
分类:
数据库 时间:
2014-10-17 12:16:12
阅读次数:
345
今天特地把Github上的教程Github Generating SSH keys翻译成中文(并非全文翻译),因为自己的水平有限,有错误还请指出。
SSH key 是为了确认你是项目的管理者或拥有者,然后可以不使用密码使用git。当然使用github的时候要用SSH链接,用https的话就无所谓了。 https可以clone任何人的project,但SSH只能clone属于你的,你必须是这个项目的拥有者。 另外SSH在push的时候不需要输入用户名和密码,方便了用户的使用,前提是你先得在github...
分类:
其他好文 时间:
2014-10-17 12:00:56
阅读次数:
268
在PHP的数组中,如果你想将数组中所有键值提取出来组成一个新的数组,可以使用array_keys函数。函数用法如:array_keys(array,value)W3C中是这样介绍的:array_keys()函数返回包含数组中所有键名的一个新数组。如果提供了第二个参数,则只返回键值为该值的键名。如果strict参数..
分类:
编程语言 时间:
2014-10-17 06:14:14
阅读次数:
443
测试环境redis操作cd /export/servers/redis-2.8.9/src/./redis-cli -n 0 keys keys(pattern):返回满足给定pattern的所有keyexists(key):确认一个key是否存在del(key):删除一个keydbsize:返回当...
分类:
其他好文 时间:
2014-10-16 19:25:12
阅读次数:
214
1.github首先需要一个SSH key进行加密。用来保证权限的。 生成SSH key的步骤:Step 1: Check for SSH keysFirst, we need to check for existing SSH keys on your computer. Open upyour ...
分类:
其他好文 时间:
2014-10-15 14:11:00
阅读次数:
178
这里的函数主要用来做:返回指定表格中所有的键。参考资料为quick_cocos.星月倾心贡献~~~--[[-- 返回指定表格中的所有键(key)-- example: local t = ( a = 1, b = 2, c = 3 ) local keys = table.keys( t...
分类:
其他好文 时间:
2014-10-13 23:15:38
阅读次数:
277
yum 安装软件时提示warning ,导致安装失败。如下图:据网上资料说这是由于yum安装了旧版本的GPG keys造成的。解决办法就是rpm --import /etc/pki/rpm-gpg/RPM*
分类:
其他好文 时间:
2014-10-09 23:13:57
阅读次数:
212
1. Find foreign keys
SELECT
* FROM sys.foreign_keys
WHERE referenced_object_id
= object_id('Student')
2. Delete foreign keys
SELECT
'ALTER TABLE ' + OBJECT_SCHEMA_NAME(parent_object_id)
...
分类:
其他好文 时间:
2014-10-08 14:01:05
阅读次数:
243
Given a binary tree, determine if it is a valid binary search tree (BST).
Assume a BST is defined as follows:
The left subtree of a node contains only nodes with keys less than the node's key.Th...
分类:
其他好文 时间:
2014-10-06 19:32:50
阅读次数:
173
Problem Description
Everyone knows Matt enjoys playing games very much. Now, he is playing such a game. There are N rooms, each with one door. There are some keys(could be none) in each room corres...
分类:
其他好文 时间:
2014-10-04 20:38:27
阅读次数:
234