摘要:
增加一列: alter table emp4 add test varchar2(10); 修改一列: alter table emp4 modify test varchar2(20); 删除一列: alter table emp4 drop column test; 这里要注意几个地方,首先,增 阅读全文
摘要:
判断语句:if 条件 then if条件 then ************; elsif条件 then ************; elsif条件 then ************; end if; end if;主要注意elsif 写法,少一个e时间查询:to_char(t.uptime,'y... 阅读全文