摘要: 对于rownum来说它是oracle系统顺序分配为从查询返回的行的编号,返回的第一行分配的是1,第二行是2,依此类推,这个伪字段可以用于限制查询返回的总行数,而且rownum不能以任何表的名称作为前缀。举例说明:例如表:student(学生)表,表结构为:ID char(6) --学号name VARCHAR2(10) --姓名 create table student (ID char(6), name VARCHAR2(100));insert into sale values('200001',‘张一’);insert into sale values('200. 阅读全文
posted @ 2009-11-29 11:00 无双的小宝 阅读(262) 评论(0) 推荐(0) 编辑
摘要: The following are number examples for the to_char function.to_char(1210.73, '9999.9')would return '1210.7'to_char(1210.73, '9,999.99')would return '1,210.73'to_char(1210.73, '$9,999.00')would return '$1,210.73'to_char(21, '000099')would return 阅读全文
posted @ 2009-11-29 10:57 无双的小宝 阅读(1794) 评论(0) 推荐(0) 编辑