摘要:interbase 6.5的新特性
作者:bill todd(team b成员)
译者:tr@soe
原文uri:http://www.dbginc.com/tech_pprs/ib65new.html
1. 改良的缓存管理
2. 指定处理器
3. 取消语句的执行
4. 元数据的安全性
5. 64位文件i/o
6. rows语句
7. 以xml格式导出数据
8. 其它改......
摘要:end users
the end users are who you are designing and building the data warehouse for ?your customers. they rely on the information they extract from the warehouse in order to work more effectively a......
深入研究SQL结构化查询语言中的LIKE语句 在sql结构化查询语言中,like语句有着至关重要的作用.
like语句的语法格式是:select * from 表名 where 字段名 like 对应值(子串),它主要是针对字符型字段的,它的作用是在一个字符型字段列中检索包含对应子串的. 【程序编程相关:
ORACLESQL性能优化系列(十一)】 【推荐阅读:
ORACLESQL性能优化系列(十二)】 假设有一个数据库中有个表table1,在table1中有两个字段,分别是name与sex二者全是字符型数据.现在我们要在姓名字段中查询以“张”字开头的记录,语句如下: 【扩展信息:
ORACLE常用傻瓜問題1000問(之五】 select * from table1 where name like "张*" 如果要查询以“张”结尾的记录,则语句如下: select * from table1 where name like "*张" 这里用到了通配符“*”,可以说,like语句是与通配符分不开的.下面我们就详细介绍一下通配符.
匹配类型
摘要:on-line analytical processing (olap) is a category of software technology that enables analysts, managers and executives to gain insight into data through fast, consistent, interactive access to a wid......