如何使用insert命令在配置单元中插入当前日期


insert into kb values(select current_date(),select current_timestamp());      
select * from kb;

它给出了错误。

使用INSERT。。。选择:

insert into table kb select current_date(), current_timestamp();        

阅读语言手册。

最新更新