我有SQL Server
一个列类型的表,smalldatetime
我PreparedStatement
用来读/写表中的数据。例如我的桌子是这样的:
| date |
+------------------------+
| 2019-11-06 09:48:00 +
| 2019-11-05 07:04:00 +
| ... +
+------------------------+
我正在阅读该专栏date
:
String date = rs.getString("date");
我.0
在日期结束时得到一个额外的:
2019-11-06 09:48:00.0
2019-11-05 07:04:00.0
为什么会这样?