Welcome to My Blog
sql advance sql advance
数据类型某些聚合函数可以作用于所有数据类型,例如COUNT;而某些聚合函数只能作用于特点数据类型,例如SUM只能作用于数值类型。某些数据看起来是数值,但是很可能是以VARCHAR形式存储的。这就涉及到了数据类型的转换。可以采用以下两种形式。
2020-10-24
shell shell
BasicVariableConvention: all caps for system variables, lower case for user defined variables. echo $BASH echo $BASH_VE
2020-06-20
python python
变量类型及基本操作赋值方式单个赋值x=1 y=2 多个赋值x, y = 1,2 用列表赋值x, y = [1, 2] 用字符串赋值字符个数需要与对象个数相等,且赋值后对象类型为字符串x, y = ‘12’ 打印调用print()方法时,相当
2020-05-01
php php
注意事项 空格不计 以分号结尾 不区分大小写 使用<?php phpinfo(); ?>检测文件 在php.ini文件中打开错误提示: display_errors = On error_reporting = E_ALL
2020-04-28
matlab matlab
普通语法: %单行注释 在行末加“;”会抑制自动打印功能 disp()相当于打印。disp(sprint(‘%0.2f’, var)控制小数打印位数。 help后直接加指令可以看该指令的指南 load后直接加文件名可以读取文件 save后直
2020-04-25
go go
Introcompiled, statically typed; compiled executables OS specific. some OO features: custom interface, types, structs
2020-04-24
cpp cpp
Data Type and Structuretemplate类似于Java的泛型e.g.: template <typename T> T maxof (const T &a, const T &b){
2020-04-22
c c
要点总结: GNU Compiler Collection也叫gcc,是最流行的C编译器之一。可以在很多操作系统中使用。在命令提示符中使用gcc cards.c -o cards进行编译。编译过后,一个cards.exe文件将出现(Wind
2020-04-16
r r
排序对数据集进行排序的时候,不打乱行之间的联系#sort m by using the order and keep the connections.#Don’t miss the comma after the order.sort_df
2020-04-01
sql sql
General Hints Case insensitive, except folders in Linux Double quote and single quote does not matter, prefer single qu
2020-02-16