我可以复制这样的表:
create table abc_new as select * from abc
我可以在同一句子中复制表格和新生命列像生日这样的日期吗?
答案 0 :(得分:1)
它添加日期
create table abc_new as select *,sysdate as someDate from abc
如果我输入数字,则添加数字..
答案 1 :(得分:0)
您可以在Sql中创建表的视图。你不能像在Mysql中那样在Sql中创建重复的表。
查看:
CREATE VIEW view_name AS
SELECT column_name(s)
FROM table_name
WHERE condition