- DB2中的字符串连接符是 || 而不是 + !!!
- 把字符串转换成日期
SELECT to_date('22080122','yyyy-mm-dd') FROM tablename
SELECT to_date('20080122112521','yyyy-mm-dd hh-mi-ss') FROM SYSIBM.SYSDUMMY1
一、返回结果集的前N行
MSSQL
select top N * from tablename
DB2
select * from tablename fetch first N rows only
Oracle
select * from table where rownum
二、查看有哪些表
DB2
list tables
二、查看表结构
Oracle
desc tablename
DB2
describe table tablename
阅读(900) | 评论(0) | 转发(0) |