码迷,mamicode.com
首页 >  
搜索关键字:create table    ( 57379个结果
常用sql语句及案例
目录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常用命令与分支操作
创建分支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
rsync inotify
rsync客户端+inotify-tools1.1.1.12rsync服务器1.1.1.111.1.1.12配置[root@slave3wwwroot]#cat/etc/rsyncd-web.sh #!/bin/bash host1=1.1.1.11 src=/web/wwwroot/ dst1=web1 /usr/bin/inotifywait-mrq--timefmt‘%d/%m/%y%H:%M‘--format‘%T%w%f%e‘-emodify,delete,create,attrib..
分类:其他好文   时间:2014-05-03 01:08:22    阅读次数:426
开发安全卫士中遇到的问题
异常一:Can‘tcreatehandlerinsidethreadthathasnotcalledLooper.prepare()这个异常是因为非主线程中默认没有创建对象。所以就要看看该方法所在的线程是不是主线程一看。真的不是。于是取消newThread().start();搞定。问题1:@OverridepublicvoidonClick(DialogInterfacedialog,i..
分类:其他好文   时间:2014-05-03 00:48:54    阅读次数:276
POJ 2676 数码问题DLX
Sudoku Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 13023   Accepted: 6455   Special Judge Description Sudoku is a very simple task. A square table with 9...
分类:其他好文   时间:2014-05-03 00:31:30    阅读次数:400
cocos2d-x3.0 RenderTexture(二)
.h #include "cocos-ext.h" #include "ui/CocosGUI.h" #include "cocostudio/CocoStudio.h" USING_NS_CC; USING_NS_CC_EXT; using namespace ui; .cpp auto background = LayerColor::create(Color4B(200,200...
分类:其他好文   时间:2014-05-02 21:27:20    阅读次数:367
积累的VC编程小技巧之树操作
1.如何在TreeList中加图标?[问题提出]请问treeview控件和treectrl控件的用法有何不同呢?向如何imagelist控件中加图象呀?[解决方法]1)HICON hicon[8];m_imageList.Create(16,16,0,8,8);hicon[0]=AfxGetApp(...
分类:其他好文   时间:2014-05-02 13:24:24    阅读次数:274
UVA 之11300 - Spreading the Wealth
Problem A Communist regime is trying to redistribute wealth in a village. They have have decided to sit everyone around a circular table. First, everyone has converted all of their properties to co...
分类:其他好文   时间:2014-05-02 10:30:59    阅读次数:375
MySQL分页的LIMIT函数
SELECT*FROM表名称LIMITM,N 。其中的m表示从第几条开始,0表示第一条;n表示一共显示几条。mysql_num_rows:取得结果行的数目。table中奇数行变色或偶数行变色:tr:nth_child(odd或even){里面写入颜色};其中odd表示奇数行,even表示偶数行。
分类:数据库   时间:2014-05-02 09:17:24    阅读次数:330
关于mysql的一些知识
sql%通配符可以匹配任意字符包括空字符串_通配符表示一个字符不包含空数据库命名字母数字下划线可以以数字开头但是不要用系统保留关键字尽量使用小写linux严格区分大小写名字比较长的时候使用_下划线做连接查看数据库创建showcreatedatabasedb_name查看建表语句showcreatetable..
分类:数据库   时间:2014-05-02 08:08:04    阅读次数:377
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!