摘要:
![](http://images2015.cnblogs.com/blog/647947/201707/647947-20170711173813462-2091894928.bmp) 阅读全文
摘要:
標準差(英语:Standard Deviation,SD),数学符号σ(sigma),在概率統計中最常使用作為測量一組數值的離散程度之用。 阅读全文
摘要:
在文件开头编写如下代码,并且保存为utf 8 coding: utf 8 阅读全文
摘要:
修改文件夹打开默认路径 /Users/holyant/.jupyter/jupyter_notebook_config.py conda create n siraj regression python=2 conda install pandas matplotlib scikit learn s 阅读全文
摘要:
输入输出 输出unicode字符串 数组 tuple 元组 不可修改 循环 dist set 阅读全文
摘要:
列出数据库:show databases; 选择数据库:use databaseName; 列出表格:show tables; 显示表格列的属性:show columns from tableName; Desc tableName; 执行sql文件:source fileName.txt; 匹配字 阅读全文
摘要:
mysql日期和字符相互转换 date_format(date,'%Y %m %d') str_to_date(date,'%Y %m %d') %Y:代表4位的年份 %y:代表2位的年份 %m:代表月, 格式为(01……12) %c:代表月, 格式为(1……12) %d:代表月份中的天数,格式为( 阅读全文
摘要:
CAST(expr AS type), CONVERT(expr,type), CONVERT(expr USING transcoding_name) The CAST() and CONVERT() functions take a value of one type and produce a 阅读全文
摘要:
1.导出整个数据库 mysqldump u 用户名 p 数据库名 导出的文件名 mysqldump u wcnc p smgp_apps_wcnc wcnc.sql 2.导出一个表 mysqldump u 用户名 p 数据库名 表名 导出的文件名 mysqldump u wcnc p smgp_ap 阅读全文
摘要:
SELECT FROM book limit 2,1 2是index ,1是几条数据 阅读全文