摘要:
Oracle数据库插入时间戳的两种方式 第一种: 1.建立一个测试表 create table test1( id number primary key, name varchar(16), create_time timestamp ); 2.通过特定的sql语句实现插入 insert into 阅读全文
摘要:
/** * @author JH_Y * @version 1.0 */ public class Test { public static void main(String[] args) { System.out.println(t1(8)); String s = "abcdefabc"; S 阅读全文