Oracle HIVE 建表,字段创建时间类型为Timestamp,如何设置默认值当前时间?
Oracle
CREATE TABLE test_timestamp(id NUMBER,a timestamp DEFAULT systimestamp); INSERT INTO test_timestamp(id) VALUES (1); commit;