Skip to content

Commit 8e60eec

Browse files
committed
fix sentense
1 parent 70a9ad5 commit 8e60eec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documents/forDB/postgresql_guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ CREATE TABLE sales_category (
586586
INSERT INTO sales_category (category_code) VALUES ('DUMMY');
587587
```
588588

589-
SQLで検索すると、表示上は `DUMMY` に見えるが、`CONCAT()` で文字列結合すると `DUMMY 123` と半角スペースでパディングされた値に `123` が追加されていることがわかる。
589+
SQLで検索すると、表示上は `DUMMY` に見えるが、`CONCAT()` で文字列結合すると半角スペースでパディングされた値に `123` が追加されていることがわかる。
590590

591591
```sql
592592
# SELECT category_code, CONCAT(category_code, '123') FROM sales_category;

0 commit comments

Comments
 (0)