SELECT table_name, column_name, data_default
FROM user_tab_cols t
where column_name = 'CREATED_DATE_TIME'
但是返回的是 long型別
需要匯出到excel
然後處理
alter table SUPPLIER modify created_date_time default sysdate;
SELECT table_name, column_name, data_default
FROM user_tab_cols t
where column_name = 'CREATED_DATE_TIME'
但是返回的是 long型別
需要匯出到excel
然後處理
alter table SUPPLIER modify created_date_time default sysdate;