SQL – Case Sensitive & Insensitive
在做資料搜尋,比對時,什麼情況會 區分大小寫 ( Case sensitive ) 或是 不區分大小寫 ( Case insensitive ). 預設建立資料庫時使用的是 latin1 ( 關於資料庫編碼請參考 – https://benjr.tw/102156 ) ,只有 Binar […]
在做資料搜尋,比對時,什麼情況會 區分大小寫 ( Case sensitive ) 或是 不區分大小寫 ( Case insensitive ). 預設建立資料庫時使用的是 latin1 ( 關於資料庫編碼請參考 – https://benjr.tw/102156 ) ,只有 Binar […]
測試環境為 CentOS 8 x86_64 (虛擬機) REGEXP_REPLACE 想要把某字串內容取代成為另一個字串可以透過 函數 REPLACE .但是很可惜的是無法搭配 REGEXP (正規表示式) 來使用.這時候可以使用另外一個函數 REGEXP_REPLACE 來滿足. 正規表示式字元可 […]
測試環境為 CentOS 8 x86_64 (虛擬機) 字串函數 ( String Functions ) 與 型別轉換 – https://benjr.tw/102953 數字函數 (Numeric Functions) – https://benjr.tw/101970 […]
測試環境為 CentOS 8 x86_64 (虛擬機) ,下面針對 SQL SELECT 的 GROUP BY 使用詳細說明. 先建立一個資料庫 (testdb) , 與 tables (employee) 格式為 Name VARCHAR(20), Dept VARCHAR(20), jobTit […]
測試環境為 CentOS 8 x86_64 (虛擬機) . 我有一個溫度統計(數字) 的資料庫,要如何針對時間區間 (Date Time) 來統計資料,可以使用函數 UNIX_TIMESTAMP 來分類,搜尋. 先建立一個資料庫 (testdb) 與 tables (tempsta) 格式為 數字欄 […]
測試作業系統 CentOS 8 x86_64 (虛擬機) 目前 Linux 上的時間同步 NTP ( Network Time Protocol , 透過這個協定跟 NTP Server 的時間來同步) 是透過 chronyd 這個服務,下面來看一下用法. timedatectl 先來看一下 tim […]
測試環境為 XRDP Server ( CentOS 8 ) – IP : 192.168.111.177 測試環境建議可以先關閉 firewall 與 selinux https://benjr.tw/95368 Windows Remote Desktop (Windows 10) […]
測試作業系統 CentOS 8 x86_64 (虛擬機) 如果需要再開機後新增加 Routing Table ,以前會寫在 /etc/rc.d/rc.local ,不過自從系統改成 systemd – https://benjr.tw/94315 之後,這個方式需要修改設定,請參考 &# […]
PXE (Preboot eXecution Environment) 主要讓系統可以透過網路開機並安裝作業系統(或是 LiveCD),在網卡上有一塊 ROM (Firmware) 裡面存放了一些基本的網路協定 如:Internet Protocol (IP), User Datagram Prot […]
多筆的 SQL 敘述,可以儲存成為 Stored Routines Procedure 或是 User-Defined Function (UDF) . 在 Stored Routines 會常用到 SQL Flow Control Statements 除了 CASE , IF (詳細請參考 – […]