只有注册用户登录后才能阅读该文。 阅读全文
摘要:
DML insert: SQL> create table t1(x int, y char(1), z date); SQL> insert into t1(x, y, z) values (99, 'a', sysdate) , (55, 'a', sysdate); SQL> insert i 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
单行函数 SQL> select upper(first_name), lower(last_name), length(last_name) from employees; SQL> select (sysdate-hire_date)/7 from employees; SQL> select 阅读全文