我的代碼:語法錯誤,同時從另一個表創建表
Statement stmt=null;
String cmdstr = "create table " + tableName + " as (select * from Master_Sheet);";
try{
stmt = con.createStatement();
stmt.executeUpdate(cmdstr);
}
catch(Exception e)
{
e.printStackTrace();
}
finally
{
try{
if(stmt != null)
stmt.close();
}
catch(Exception e)
{
e.printStackTrace();
}
}
輸出:
值java.sql.SQLException:[微軟] [ODBC Microsoft Access驅動程序]語法在CREATE TABLE語句錯誤。 在sun.jdbc.odbc.JdbcOdbc.createSQLException(來源不明) 在sun.jdbc.odbc.JdbcOdbc.standardError(來源不明)
請幫幫忙,我是很新的Java代碼。