1
0
Fork 0
mirror of https://github.com/treffynnon/sqlstyle.guide.git synced 2025-03-09 12:49:51 -05:00

Merge pull request #59 from stevencch99/gh-pages

Correct the translation for zh-TW
This commit is contained in:
Simon Holywell 2020-03-05 14:54:55 +10:00 committed by GitHub
commit a563f53915
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -316,7 +316,7 @@ SELECT CASE postcode
##### Validation 校驗
* 用`LIKE`和`SIMILAR TO`約束來保證格式已知字串的數據完整性。
* 當數字的值的範圍可以確定時,用`CHECK()`來防止錯誤的值進入資料庫或被錯誤地轉換。大部分情況下至少要確認值大於零。
* 當數字的值的範圍可以確定時,用`CHECK()`來防止錯誤的值進入資料庫或被錯誤地轉換。大部分情況下至少要確認值大於零。
* `CHECK()`約束應該在單獨的語句中以便debug。
##### Example