字串截取某段 4月 14, 2019 MySQL No comments substring('字串', 起始位置, 取幾個字) right('字串', 取右邊數來幾個字) left('字串', 左邊數來起始位置)... Read More
MySQL Command 4月 14, 2019 MySQL No comments 1. 到Mysql Server\bin 2. 執行登入的動作 mysql -u root -p 密碼 3. 出現Welcome to the MySQL monitor. 即可使用 ... Read More
如果是空值則給預設值 4月 10, 2019 MySQL No comments 如果x不是NULL(不包含0),IFNULL()返回x,否則它返回y。 SELECT IFNULL(x, y) IFNULL()返回一個數字或字符串值。 ... Read More
過濾重複的字詞 4月 10, 2019 MySQL No comments sample id name 1 AA 2 BB 3 CC 4 CC 5 DD --------------------------------------------- select distinct name from sample 用distinct過濾輸出結果是: name AA BB CC... Read More
Format unixtime 4月 10, 2019 MySQL No comments 轉換 unixtime,ex. 1416561157 -> 2014-11-21 17:12:37 from_unixtime(141656115... Read More
解決PHP輸出UTF-8輸出成CSV亂碼問題 4月 09, 2019 PHP No comments Description 在輸出資料時,時常使用會輸出成CSV文件,為什麼要輸出能CSV呢? 原因有以下幾個 1. 結構簡單 2. 容量儲存較小 3. Excel支援直接查看 一般我們直接UTF-8輸出成CSV用Excel打開會是亂碼,是因為Excel預設用GBK解析的緣故。 這時只要加上BOM,就能讓Excel識別UTF-... Read More
JQuery select 操作 1月 09, 2019 JQuery & JavaScript No comments 移除特定option $('#Id option[value=6]').remove(); 移除select內的所有option $('#select option').remove(); select加option $("#selectList").append(new Option("option text", "value")); select readonly $("#select").attr('disabled', true);... Read More