摘要:
一、数据库,表的基本语句 1.创建数据库 CREATE DATABASE 数据库名字; 2.删除数据库 DROP DATABASE 数据库名字; 3.创建新表 CREATE TABLE test ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KE 阅读全文
摘要:
public static String getNowDate() { Date currentTime = new Date(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String da 阅读全文