A-How's BLOG

記錄一些筆記

Home

Database Normalization

Database Normalization 是一種減少資料重複性,及確保資料一致性的過程
共有六個正規化,First Normal Form (1NF) 到 Sixth Normal Form (6NF),大部分的 database 都是到 Third Normal Form (3NF)

【MSSQL】Derived tables and common table expressions

  • View
  • Temporary Tables
  • Table Variable
  • Derived Tables
  • CTE (Common Table Expression)

【MSSQL】Temporary tables

temporary table 被建立在 TempDB,且當 connection 關閉後會自動被刪除

  • Permanent table
  • Local temporary table
  • Global temporary table

【MSSQL】Important concepts related to functions

  • Deterministic and Nondeterministic Functions
    • Deterministic functions
    • Nondeterministic functions
    • RAND() function
  • WITH ENCRYPTION
  • WITH SCHEMABINDING

【MSSQL】User-defined functions (UDF)

  • Scalar functions
  • Inline table-valued functions
  • Multistatement table-valued functions

【SQL】Views

用來儲存 SQL query,可以看作是 virtual table

  • Views
  • Indexed views

【SQL】基本中的基本

突然發現常常忘記一些基本中的基本,
來寫一下筆記幫助記憶

【SQL】Cascading referential integrity constraint

Cascading referential integrity constraint
用來定義使用者 UPDATE 或是 DELETE「FK」時的動作

React Library 網頁浮水印 (浮水印文字可換行)

post image

最近工作上出現了一個需求:在整個網頁加上文字浮水印
沒錯,不是在圖片上加浮水印,是整個網頁⋯

1