SQL> create table test1
2 (tid number,tname varchar2(20));
CREATETABLE hire_dates
(id NUMBER(8),
hire_date DATEDEFAULT SYSDATE);
SQL> create table test2
2 (tid number,
使用ALTER TABLE语句可以:
表已删除。
SQL> create table test3
2 (tid number,
可以通过rowid来访问表中的记录
原文地址:http://blog.csdn.net/qhwc2009/article/details/46311117