1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-05 16:18:01 +00:00

Add a sql tag to the last code block.

This commit is contained in:
jbranchaud
2015-11-09 22:52:18 -06:00
parent 74e4bfeb15
commit cf2eed7d17

View File

@@ -25,7 +25,7 @@ TRUNCATE TABLE;
If many tables are tied together in this way and you are looking to throw
all of it out, then a simpler approach is to cascade the truncation:
```
```sql
> truncate A cascade;
NOTICE: truncate cascades to table "B"
TRUNCATE TABLE