We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 787768d + 07c2972 commit 2f3cb01Copy full SHA for 2f3cb01
README.md
@@ -648,7 +648,11 @@ This will open a browser to the H2 console interface. To connect to your Clippy
648
```
649
SELECT COUNT(*) FROM clips; -- Get total number of clips.
650
SELECT MAX(id) FROM clips; -- Get highest clip ID.
651
+DELETE FROM clips WHERE id = 1234; -- Delete specific clip.
652
DELETE FROM clips WHERE id < 10000; -- Delete some old clips.
653
+SELECT id, LENGTH(text) length, text FROM clips ORDER BY length DESC LIMIT 50; -- Show 50 largest clips.
654
+DELETE FROM clips WHERE LENGTH(text) >= 12345; -- Delete clips larger than 12345 characters.
655
+DELETE FROM clips WHERE text LIKE '%abcde%'; -- Delete clips containing "abcde".
656
657
658
## Development details
0 commit comments