摘要:
UPDATE table_1 t1 left join table_2 t2 on t2.id = t1.tid SET t1.username = t2.uname where t1.id>5; 阅读全文
摘要:
1. 结论:'权限大小不同': dba_* > all_* > user_* (1) dba_* : 可以访问 '数据库' 中所有的对象(前提:该用户是 dba 用户) (2) all_* :某一用户 '拥有' 的或 '可以访问' 的所有的对象 (3) user_*:某一用户 '拥有' 的所有对象 阅读全文
摘要:
select table_name from user_tables where TABLESPACE_NAME is not null and user='UserName' SELECT table_name, column_name, data_type FROM all_tab_cols W 阅读全文
摘要:
https://blog.csdn.net/qq_34745941/article/details/97393973 阅读全文
摘要:
and ( (begin_date <='2020-08-01' and end_date >='2020-12-09') or (begin_date >='2020-08-03' and end_date <='2020-12-09') or (begin_date >='2020-08-03' 阅读全文
摘要:
https://blog.csdn.net/prcyang/article/details/103928132 阅读全文
摘要:
应用于表创建完毕之后再添加。 ALTER TABLE 表名 ADD 索引类型 (unique,primary key,fulltext,index)[索引名](字段名) //普通索引 alter table table_name add index index_name (column_list) 阅读全文
摘要:
https://blog.csdn.net/qq_22771739/article/details/84668620 INSERT INTO `base_archive`( `key_no`, `ele_code`, `ele_name`) ON DUPLICATE KEY UPDATE key_n 阅读全文