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
//单独动态创建一个控件; procedure TForm1.BitBtn1Click(Sender:
TObject);var myPanel : TPanel;begin myPanel :=
TPanel.Create(nil);//关于Create(nil)和Create(Self)的区别....
分类:
其他好文 时间:
2014-05-05 21:50:24
阅读次数:
291
测试中出错出错一# ./helloworld
-qwsQWSServerSocket::init: Function not implementedQWSServerSocket: unable to
create socket.QWSServerPrivate::initServer: serve...
分类:
其他好文 时间:
2014-05-04 09:56:40
阅读次数:
322
这是一个关于使用cocostudio实现动画自由切换的小demo
auto sprite =Sprite::create("background.png");
sprite->setAnchorPoint(Point(0,0));
this->addChild(sprite);
ArmatureDataManager::getInstance()->addArmatureFi...
分类:
其他好文 时间:
2014-05-04 09:17:46
阅读次数:
344
SIP --------------------------- Session Initiation
Protocol --------------------------- create, manage and terminate sessions i...
分类:
其他好文 时间:
2014-05-03 22:49:59
阅读次数:
564
DDL :Data Definition Language (DDL) statements
are used to define the database structure or schema. Some examples:CREATE - to
create objects in the da...
分类:
数据库 时间:
2014-05-03 22:21:22
阅读次数:
410
创建数据库:
CREATE DATABASE stefan;
删除数据库:
DROP DATABASE stefan;
重命名数据库:
重命名数据库没有直接的办法。
已经不再使用的方法:
RENAME DATABASE stefan TO LCDB;
创建表格语法:
CREATE TABLE 表名称
(
列名称1 数据类型,
列名称2 数据类型,
列...
分类:
数据库 时间:
2014-05-03 21:47:22
阅读次数:
470
auto root = Dictionary::create();
auto string = String::create("string element value");
root->setObject(string, "string element key");
auto array = Array::create();
...
分类:
其他好文 时间:
2014-05-03 16:27:48
阅读次数:
380