目录1)基本2)数学函数3)rownum4)分页5)时间处理6)字符函数7)to_number8)聚合函数9)学生选课10)图书馆借阅基本--新建表:create
table table1( id varchar(300) primary key, name varchar(200) not nul...
分类:
数据库 时间:
2014-05-12 16:11:47
阅读次数:
590
创建分支svn cp -m "create branch"
http://svn_server/xxx_repository/trunk
http://svn_server/xxx_repository/branches/br_feature001获得分支svn co
http://svn_serv...
分类:
其他好文 时间:
2014-05-06 09:07:08
阅读次数:
362
epoll函数#include int epoll_create(int size)int
epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)int epoll_wait(int
epfd,struct epoll_event...
分类:
其他好文 时间:
2014-05-06 00:21:30
阅读次数:
519
技术要点一个存储过程包括名字、参数列表,以及可以包括很多SQL语句的SQL语句集。下面为一个存储过程的定义过程:create procedure
proc_name (in parameter integer)begindeclare variable varchar(20);if paramete...
分类:
数据库 时间:
2014-05-06 00:04:50
阅读次数:
433
1、视图的作用(1)表需要占用磁盘空间,而视图不需要(2)视图不能添加索引(3)视图可以简化复杂查询(4)视图可提高安全性2、视图或者修改的创建create
or replaceview 视图名 as select 语句 [with read only];create or replace view...
分类:
数据库 时间:
2014-05-05 23:43:25
阅读次数:
423
Create linux tar gz (Gzip)archive (创建压缩文件)tar -czvf
myarchive.tgz mydirectory/We use the -t option to create an linux tar archivec–
Creates a new .ta....
分类:
其他好文 时间:
2014-05-05 23:41:27
阅读次数:
403
查询数据简单的查询 1 create table stu_info 2 ( 3 sno int
not null 4 ,sname varchar(20) not null 5 ,sex varchar(2) not null 6 ...
分类:
数据库 时间:
2014-05-05 23:35:08
阅读次数:
618
异常一:Can‘tcreatehandlerinsidethreadthathasnotcalledLooper.prepare()这个异常是因为非主线程中默认没有创建对象。所以就要看看该方法所在的线程是不是主线程一看。真的不是。于是取消newThread().start();搞定。问题1:@OverridepublicvoidonClick(DialogInterfacedialog,i..
分类:
其他好文 时间:
2014-05-03 00:48:54
阅读次数:
276
Instructionshereare not great.First shut down
ST2.Make sure you use absolute paths for symlink:e.g.$ curl -kL
http://xrl.us/pythonbrewinstall | bash$ ...
分类:
其他好文 时间:
2014-05-02 11:01:23
阅读次数:
382
sql%通配符可以匹配任意字符包括空字符串_通配符表示一个字符不包含空数据库命名字母数字下划线可以以数字开头但是不要用系统保留关键字尽量使用小写linux严格区分大小写名字比较长的时候使用_下划线做连接查看数据库创建showcreatedatabasedb_name查看建表语句showcreatetable..
分类:
数据库 时间:
2014-05-02 08:08:04
阅读次数:
377