MariaDB – 常用處理日期與時間函數 ( Date & Time Functions )
測試環境為 CentOS 8 x86_64 虛擬機. 字串函數 ( String Functions ) 與 型別轉換 – https://benjr.tw/102953 數字函數 (Numeric Functions) – https://benjr.tw/101970 日 […]
測試環境為 CentOS 8 x86_64 虛擬機. 字串函數 ( String Functions ) 與 型別轉換 – https://benjr.tw/102953 數字函數 (Numeric Functions) – https://benjr.tw/101970 日 […]
測試環境為 CentOS 8 x86_64 虛擬機. 字串函數 ( String Functions ) 與 型別轉換 – https://benjr.tw/102953 數字函數 (Numeric Functions) – https://benjr.tw/101970 日 […]
測試環境為 CentOS 8 x86_64 虛擬機. 字串函數 ( String Functions ) 與 型別轉換 – 這邊介紹. 數字函數 (Numeric Functions) – https://benjr.tw/101970 日期與時間函數 (Date & […]
測試環境為 CentOS 8 x86_64 (虛擬機) 在 SQL 的字串是用 “String” (Double Quote) 或是 ‘String’ (Single Quote) 來表示,但我的字串裡面真的要使用 ” 或是 ‘ […]
測試環境為 CentOS 8 x86_64 (虛擬機) 多筆的 SQL 敘述,可以儲存成為 Procedure – https://benjr.tw/102904 或是 Function ,下面來看一下. 先建立等一下 Function 要使用的資料庫. 檢視一下 Function 怎麼 […]
測試環境為 CentOS 8 x86_64 (虛擬機) 多筆的 SQL 敘述,可以儲存成為 Procedure 或是 Function – https://benjr.tw/102916 ,下面來看一下 Procedure. 先建立等一下 Procedure 要使用的資料庫. 檢視一下 […]
測試環境為 CentOS 8 x86_64 (虛擬機) INSERT 的資料有辦法從另外一個資料表 ( TABLE ) 而來嗎? 可以使用 INSERT INTO SELECT FROM . 先建立要用來測試的資料. 現在建立 ProjectA 資料表,資料是從 Project 資料表而來的. 一般 […]
測試環境為 CentOS 8 x86_64 (虛擬機) 當欄位有使用 PRIMARY KEY 或是 UNIQUE Index ,在新增資料時會確認是否重覆 (Duplicate),當重覆時資料無法輸入,如果當時是新增 (INSERT) 多筆資料時,會 系統會 Rolls Back 讓當次所有的資料都 […]
測試環境為 CentOS 8 x86_64 (虛擬機) INSERT 時會檢查 PRIMARY KEY 或是 UNIQUE Index 欄位是否有重覆 (Duplicate),進而確保資料的唯一性,但當我們資料欄位非 PRIMARY KEY 或是 UNIQUE Index 時,怎麼檢查資料是否有重覆 […]
XML (Extensible Markup Language) 是一種可延伸標示語言. 相較於 HTML 是定義好的國際通用的標記式語言,我們是無法自訂標記(標籤 Tag),只能變更其屬性值,這時候可以使用 XML 來自定,讓電腦之間可以處理自定的資訊,這邊來看在 MariaDB 資料庫如何處理這 […]