修改oracle表结构
新增表
create table order
(
id number(19,0) not null,
type varchar2(8 char),
update_time timestamp(6)
);
查询表结构
select table_name,column_name,data_type,data_length,nullable from user_tab_columns where table_name='SYNEPAY_BANK_TRADE';
修改字段长度
ALTER TABLE table123 MODIFY (name varchar2(512));
正文到此结束
- 本文标签: oracle
- 本文链接: https://codeis.run/article/oracle-alter-table
- 版权声明: 本文由醒醒原创发布,转载请遵循《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权