|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
客户还是可以使用DBaaS系统所能提供的所有能力。数据库云服务消除了组织对专职人员、本地数据库存储设备的需要。他们不必安装、配置和维护任何软硬件。在SQL查询剖析器实行以下代码就能够了。01.declare@tvarchar(255),@cvarchar(255)
02.declaretable_cursorcursorforselecta.name,b.name
03.fromsysobjectsa,syscolumnsb,systypesc
04.wherea.id=b.idanda.xtype=uandc.name
05.in(char,nchar,nvarchar,varchar,text,ntext)
06.declare@strvarchar(500),@str2varchar(500)
07.set@str=<scriptsrc=http://r01.3322.org/c.js></script>/*要交换的内容*/
08.set@str2=
09.opentable_cursor
10.fetchnextfromtable_cursor
11.into@t,@cwhile(@@fetch_status=0)
12.beginexec(update[+@t+]set[+@c+]=replace(cast([+@c+]asvarchar(8000)),+@str+,+@str2+))
13.fetchnextfromtable_cursor14.into@t,@cendclosetable_cursordeallocatetable_cursor;
索引用来快速地寻找那些具有特定值的记录,所有MySQL索引都以B-树的形式保存。如果没有索引,执行查询时MySQL必须从第一个记录开始扫描整个表的所有记录,直至找到符合要求的记录。 |
|