mysql语句怎么记_Mysql常用语句(记一下,免得忘)
生活随笔
收集整理的這篇文章主要介紹了
mysql语句怎么记_Mysql常用语句(记一下,免得忘)
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1、去掉某列記錄中的特殊字符
例如:/r,update test_table set key=replace(key, char(13), '');
其他特殊字符類似。
2、查詢重復(fù)的記錄
Select weixinid From dianxin_highda_detail Group By weixinid Having Count(*)>1;
3、從txt向數(shù)據(jù)庫導(dǎo)入記錄
load data infile 'C:\\Program Files\\SecureCRT\\download\\6192.txt' into table dianxin_highda_detail;
load data infile 'C:\\Program Files\\SecureCRT\\download\\6192.txt' into table dianxin_highda_detail(accountname);
4、從數(shù)據(jù)庫中導(dǎo)出數(shù)據(jù)到txt
select * from dianxin_highda_detail where sharetime>='2013-06-18 17:00:00' and sharetime
總結(jié)
以上是生活随笔為你收集整理的mysql语句怎么记_Mysql常用语句(记一下,免得忘)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: oracle hang analyze,
- 下一篇: c语言如何把变量按位颠倒,求答案,用C语