我正在编写一个Java程序,它将在其中需要值maxStationid的数据库LocalStations中创建

int maxStationId;

我想为maxStationId分配表STATION中的单元格总数。我该怎么做?

最佳答案

这是你要的吗

  st.executeQuery ("CREATE TABLE LocalStations select * from STATION");

10-07 15:52