下面的建表语句哪个是正确的()
create table acct_book_bak from select * from acct_book;
create table acct_book_bak as select * from acct_book;
create table acct_book_bak for select * from acct_book;
create table acct_book_bak in select * from acct_book;