1.order by 1,2,3 和 order by 3,2,1 的结果不同2.having 不能使用别名 ;order by 中可以使用别名 在oracle中的执行顺序: select_list > where > group by > having() > alias > or...
分类:
其他好文 时间:
2015-07-19 11:49:47
阅读次数:
109
一 本地分支操作 git log --oneline --decorate --graph --all git tag "v0" a1aba30 -- 第三个参数是tag名称,第四个参数是commit的hash值,可用第一个命令查看 git config --global alias.lol...
分类:
其他好文 时间:
2015-07-18 18:22:31
阅读次数:
123
get-alias-definitionget-childitem#dir的别名为get-childitem#只列出目录dir|where-object{$_-is[System.IO.DirectoryInfo]}dir|where-object{$_.PSIsContainer}dir|where-object{$_.Mode.Substring(0,1)-eq"d"}#只列出文件dir|where-object{$_-is[System.IO.FileInfo]}dir|wh..
分类:
系统相关 时间:
2015-07-16 22:33:26
阅读次数:
188
基本SELECT语句SELECT *|{[DISTINCT]column|expression[alias],...}FROM table;.SELECT标识选择哪些列。.FROM标识从哪个表中选择。1、SELECT可以选择全部列或选择特定的列;全部列:SELECT*FROMdepartments;特定列:SELECTdepartment_id,location_idFROMdepartments;注意:SQL..
分类:
数据库 时间:
2015-07-16 22:33:23
阅读次数:
289
Option ExplicitPrivate Declare Function PathFileExists Lib "shlwapi.dll" Alias "PathFileExistsA" (ByVal pszPath As String) As Long Sub C100() Dim s...
分类:
编程语言 时间:
2015-07-16 18:42:12
阅读次数:
115
#创建脚本目录
mkdir -p /var/www/svn/svntools
#创建apache配置文件
touch /etc/httpd/conf.d/alias.conf
#输入以下内容:
Alias /svntools "/var/www/svn/svntools"
Require valid-user
AuthType Basic
...
分类:
Web程序 时间:
2015-07-16 14:09:58
阅读次数:
133
1、命令补齐 按Tab键2、clear 或者 Ctrl+l 清屏3、Ctrl+u 删除光标前面的命令4、history 查看执行过的命令5、方向键的上下键可以查看执行过的命令1、命令别名 实例:alias copy=cp //此时可以用copy实现cp命令,如果命令...
分类:
系统相关 时间:
2015-07-15 22:12:20
阅读次数:
142
一、生成密钥库和证书1、生成服务器证书库keytool -validity 365 -genkey -v -alias uyun -keyalg RSA -keystore /opt/UEM/keyStore/uyun.keystore -dname "CN=192.168.16.163,OU=br...
分类:
Web程序 时间:
2015-07-15 14:37:56
阅读次数:
184
关机命令halt-ppoweroffinit0shutdown-hnow重启命令init6rebootshutdown-rnow或shutdown-r+1010分钟后重启shutdown-c取消计划中开机或关机touch创建文件mkdir创建文件夹-p创建多级不存在目录rm-rf*删除所有文件cp-r递归复制-a复制文件不改变属性\cp覆盖式复制alias定义别名---a..
分类:
系统相关 时间:
2015-07-14 20:40:21
阅读次数:
141
Struts2内建拦截器介绍:
alias (别名拦截器):允许参数在跨越多个请求时使用不同别名,该拦截器可将多个Action采用不同名字链接起来,然后用于处理同一信息。
autowiring (自动装配拦截器):主要用于当Struts2和Spring整合时,Struts2可以使用自动装配的方式来访问Spring容器中的Bean。
chain (链拦截器):构建一个Action链,...
分类:
其他好文 时间:
2015-07-14 15:48:51
阅读次数:
127