很多场景我们需要根据多个表的某字段进行关联更新。 select * from table1 t1; select * from table2 t2; 现需求:参照table2表修改table1表,修改条件为两表的fname列内容一致。 常见陷阱: update table1 t1 set t1.fm ...
分类:
数据库 时间:
2020-12-01 12:27:08
阅读次数:
14
CREATE DEFINER=`root`@`localhost` PROCEDURE `fetchdemo`()BEGINDECLARE is1,ic1,isc1,ic2,isc2 INT;DECLARE done int DEFAULT 0; DECLARE cur1 CURSOR for se ...
分类:
其他好文 时间:
2020-12-01 12:26:39
阅读次数:
7
主键约束 SQL> alter table customers add constraint customers_pk primary key (customer_id); Table altered. col constraint_name for a30 col constraint_type ...
分类:
数据库 时间:
2020-12-01 12:20:58
阅读次数:
12
今天做数据库导出报错:EXP-00091:Exportingquestionablestatistics.在对ORACLE数据库做exp备份导出时报EXP-00091:Exportingquestionablestatistics”错误:详情如下:EXP-00091:Exportingquestionablestatistics.EXP-00091:Exportingquestionablesta
分类:
数据库 时间:
2020-12-01 11:59:32
阅读次数:
11
[oracle@wallet01 ~]$ cat /home/oracle/script/full_backup.sh #!/bin/bash if [ -f ~/.bash_profile ]; then . ~/.bash_profile fi export SH_HOME=/home/orac ...
分类:
数据库 时间:
2020-11-26 15:19:56
阅读次数:
23
select * from v$sql select row_number() over (order by a.username, a.client_info, a.terminal) as id , a.username, a.sid, a.serial# as serial_id, a.cli ...
分类:
数据库 时间:
2020-11-26 14:51:52
阅读次数:
9
1、把主键定义为自动增长标识符类型 MySql 在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如: create table customers(id int auto_increment primary key not null, name var ...
分类:
数据库 时间:
2020-11-26 14:09:06
阅读次数:
11
今天有写过一个基于go-simple-mail 发送email 的demo,主要是复用连接,但是发现有问题,后边尝试了下 gomail,发现很不错没有问题,通过分析代码,还是go-simple-mail 实现上的问题 gomail参考demo 大部分不变,主要是修改关于email 发送的实现 参考代 ...
分类:
其他好文 时间:
2020-11-25 13:03:10
阅读次数:
18
Oracle Data Guard 报错 ORA-16057: Data Guard 配置中没有服务器
分类:
数据库 时间:
2020-11-25 12:59:34
阅读次数:
14
创建: 2020/11/21 完成: 2020/11/21, 注: 省略ArrayList java.util.* TODO: 补充ArrayList https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html 简介 动态数组 ...
分类:
编程语言 时间:
2020-11-25 12:45:46
阅读次数:
9