mysql 常用SQL语句

Posted on 2021-08-19 17:27  Great-great  阅读(58)  评论(0编辑  收藏  举报

# 在库中查询所有表名
select table_name from information_schema.tables where table_name like 'xtp_exch_sec_%' and TABLE_SCHEMA = 'xtp2_auto'

# mysql 判断字符串中是否有另一个字符串
instr(str1,str2) = 0 (不存在)和instr(str1,str2) > 0 (存在)判断是否存在

# 给一个字段添加上特定的字符
update xtp_fund_info_20210813 set fund_rights = CONCAT(xtp_fund_rights, 'J') where instr(xtp_fund_rights, 'J')


# 把查询的数据插入到新表
create table temp_stk_asset select distinct(fund_acc) from xtp_stk_asset_20210816 ORDER BY stk_avl_qty

 

导出数据库:mysqldump -h 10.29.193.61 -uroot -p123456 xtp2 > /tmp/xtp2_61.sql

mysqldump -h 10.25.24.207 -uroot -p8X0676Vq xtp > /tmp/207_xtp.sql

导入数据库:mysql -uroot -h10.29.193.61 -p123456
use xtp2
source /tmp/xtp2_61.sql

 

查看死锁:
mysql: SHOW PROCESSLIST;

杀进程:kill id 

 

Copyright © 2024 Great-great
Powered by .NET 9.0 on Kubernetes