1mysql:兩列拼接
select group_id,concat(group_name,'(',group_total_email,')') as group_name from edm_group where group_name not like '%錯誤%' and group_name not like '%test%' and group_name not like '%測試%' and group_name not like '%純淨契作%' and group_name not like '%舊%' and group_name not like '%stop%' ;
2.mysql裡面儲存的是數字格式的時間,需要轉換成datetime格式可以用 :from_unixtime(cd.create_time)
3.mysql資料庫裡面某些字段儲存內容有換行,例如:
亡命天涯刀上行
天天提心吊膽
罪魁禍首
這樣匯出csv的時候他也會換行。解決辦法如下:
select replace(replace(comment_info, char(10), ''), char(13), '')as comment_info from comment
查詢結果是 這樣:「
亡命天涯刀上行
天天提心吊膽
罪魁禍首」;
4.mysql -uroot -p;鏈結服務其:按enter鍵後輸入密碼鏈結到資料庫。
5.show databases; 顯示所有資料庫名稱。
6.use test1; 切換資料庫。
7.show tables; 顯示所有的表名稱。
8.select *from users;
9.備份資料庫:mysqldump -h192.168.100.237 -ucvas -pp@$$w0rd --default-character-set=utf8 cvasdz>e:\cvasdz2.sql
10.還原資料庫:mysql -u root -pp@$$word --default-character-set=utf8 cvasdz8.查詢列名和備註:select column_comment,column_name from information_schema.columns where table_name='表名' and table_schema='資料庫名'
隨機機率的使用小竅門
本文為原創,轉貼請註明出處 http blog.csdn.net kyosukeno1 在自然界中,雖然存在著一定的客觀規律,但並沒有絕對的可能性和不可能性。因此,使用隨機概率去描述事物的發生與消亡,最能貼切反應事物原有特徵。隨機函式最一般性的運用,莫過於使用 來簡單的限制隨機數值的大小 相信經常使...
google搜尋的使用小竅門
1 site的使用 site 網域名稱 搜尋關鍵字或者搜尋關鍵字 site 網域名稱 google中site 的使用方法總結 使用 site 搜尋運算子查詢違規內容 2 限定搜尋時間 before 2019 04 after now before 2019 04 after 2021 01 befo...
專案中使用ibatis方法
通過daomanagerbuilder載入dao.xml檔案獲取daomanager物件 dao.xml 配置如下 sql map config 配置如下 匯入database.properties檔案 設定資料庫連線屬性 匯入每乙個資料庫實體檔案 檔案指定實體類和資料表對應關係 account.x...