摘要: 一、Mysql 1、新建一个测试表 CREATE TABLE TestNull(col VARCHAR(100)); //插入四条数据 INSERT INTO TestNull VALUES(NULL); INSERT INTO TestNull VALUES('tom'); INSERT INTO 阅读全文
posted @ 2021-08-03 15:22 唏嘘- 阅读(608) 评论(0) 推荐(0) 编辑
摘要: oracle 导出或者导入数据库,用户密码中含有@符号 错误信息: EXP-00056: ORACLE error 12154 encountered ORA-12154: TNS:could not resolve the connect identifier specified EXP-0000 阅读全文
posted @ 2021-08-03 14:39 唏嘘- 阅读(1531) 评论(1) 推荐(0) 编辑
摘要: 1、导出 语法:exp 用户名/密码@服务名 tables=表名 file=xxx.dmp log=xxx.log owner=用户名 导出表: exp username/password@orcl tables=sys_user file=D:/user.dmp log=D:/user.log 导 阅读全文
posted @ 2021-08-03 14:28 唏嘘- 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 1、11G中有个新特性,当表无数据时,不分配segment,以节省空间; 只需要在空表中添加一条数据在删除,就会产生segment。导出时则可导出空表。 (1)、查询所有表中那些是空表。 select table_name from user_tables where NUM_ROWS=0; (2) 阅读全文
posted @ 2021-08-03 13:53 唏嘘- 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 一、Mysql 1、Mysql 批量删除表数据 SELECT CONCAT('delete from ',table_name,';') FROM information_schema.`TABLES` WHERE table_schema='数据库名'; 2、复制表结构及表数据 create ta 阅读全文
posted @ 2021-08-03 11:36 唏嘘- 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 1、基本语法 SELECT * FROM table LIMIT [offset,] rows | rows OFFSET offset; 如果只给定一个参数,表示记录数。 SELECT * FROM table LIMIT 5; //检索前5条记录(1-5) 相当于 SELECT * from t 阅读全文
posted @ 2021-08-03 11:15 唏嘘- 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 1、方法一:遍历 String[] arr = { "0asd", "1zxc", "2vf", "3fg", "4zz", "5yy" }; // 遍历 StringBuffer str = new StringBuffer(); for (int i=0; i<arr.length; i++) 阅读全文
posted @ 2021-08-02 10:56 唏嘘- 阅读(2075) 评论(0) 推荐(0) 编辑
摘要: 1、html <input type="text" id="birthdayBegin1" field="birthday" operator=">=" autocomplete="off" class="layui-input dateType1" style="position:absolute 阅读全文
posted @ 2021-07-31 09:38 唏嘘- 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 1、UUID函数 在MySQL中,可以用uuid()函数来生成一个UUID select UUID() from dual 2、replace函数 默认生成的uuid含有'-',我们可以使用replace函数替换掉'-',SQL如下: select REPLACE(UUID(),"-","") as 阅读全文
posted @ 2021-07-26 17:49 唏嘘- 阅读(5269) 评论(0) 推荐(0) 编辑
摘要: 在oracle8i以后提供了一个生成不重复的数据的一个函数sys_guid()一共32位, 生成的依据主要是时间和机器码,具有世界唯一性,类似于java中的UUID(都是世界唯一的)。 应用场景:当数据库某字段设置为唯一,可用此生成主键; 例如: select sys_guid() from dua 阅读全文
posted @ 2021-07-26 17:10 唏嘘- 阅读(649) 评论(0) 推荐(0) 编辑