一、 表设计规范 二、 索引规范 三、 SQL语句规范 四、 散表规范 五、 其他 FAQ 1-1.库名、表名、字段名必须使用小写字母,“_”分割。 a)MySQL有配置参数lower_case_table_names,不可动态更改,Linux系统默认为0,即库表名以实际情况存储,大小写敏感。如果是 ...
分类:
数据库 时间:
2017-05-31 10:29:30
阅读次数:
267
一、从操作系统说起: 1.我们知道mysql 是跨平台的、它可以在许多平台上运行如windows 、linux、unix(mac)。linux 是类unix的, 但是windows和linux就有非常大的不同了。 windows:文件名不区分大小写、linux:文件名区分大小写;这样会有一个问题 a ...
分类:
数据库 时间:
2017-05-27 22:29:14
阅读次数:
208
1. 题目Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last ...
分类:
其他好文 时间:
2017-05-05 23:20:21
阅读次数:
212
题目: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last ...
分类:
其他好文 时间:
2017-04-16 21:11:31
阅读次数:
217
problem: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the ...
分类:
其他好文 时间:
2017-04-15 22:54:19
阅读次数:
182
在Unix中使用lower_case_tables_name=0,在Windows中使用lower_case_tables_name=2。这样了可以保留数据库名和表名的大小写。不利之处是必须确保在Windows中查询总是用正确大小写引用数据库名和表名。如果将查询转移到Unix中,由于在Unix中大小 ...
分类:
数据库 时间:
2017-04-06 09:40:08
阅读次数:
290
[mysqld]lower_case_table_names=1datadir=/var/lib/mysqlsocket=/var/lib/mysql/mysql.sockuser=mysql# Disabling symbolic-links is recommended to prevent a ...
分类:
数据库 时间:
2017-03-23 15:53:18
阅读次数:
180
[HDU3518]Boring counting 试题描述 035 now faced a tough problem,his english teacher gives him a string,which consists with n lower case letter,he must fig ...
分类:
其他好文 时间:
2017-03-07 09:05:03
阅读次数:
164
转自博客:http://blog.csdn.net/dreamcode/article/details/8557197 一、 表设计 二、 索引 三、 SQL语句 四、 散表 五、 其他 FAQ 1-1.库名、表名、字段名必须使用小写字母,“_”分割。 a)MySQL有配置参数lower_case_ ...
分类:
数据库 时间:
2017-03-01 10:44:58
阅读次数:
299
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word ...
分类:
其他好文 时间:
2017-02-27 20:58:44
阅读次数:
187