创建一个名为‘Customers’的新表,同时要求新表中包含表‘clients’的所有记录,sql语句是
2023-11-29LTE单选(建议跳过IP/编程题)
创建一个名为‘Customers’的新表,同时要求新表中包含表‘clients’的所有记录,sql语句是
A.Select * into customers from clients
B.Select into customers from clients
C.Insert into customers select * from clients
D.Insert customers select * from clients
正确答案是A
