/* Funktionen */

This commit is contained in:
Sven 2006-08-15 12:44:36 +00:00
parent 753a0f2bbb
commit b496c34a49

4
SQL.mw
View File

@ -41,18 +41,22 @@ Referenz-Dokumentation:
{| border="1" cellspacing="0" cellpadding="3" style="border-collapse: collapse;"
|---- bgcolor="lightblue"
!Name
!Beschreibung
!Beispiel
!Ergebnis
|-
| char
| ASCII-Code -> Text
| SELECT char(42);
| '*'
|-
| concat
| Strings verketten
| SELECT concat('chunky','bacon');
| 'chunkybacon'
|-
| replace
| Text ersetzen
| SELECT replace('funky bacon', 'funky', 'chunky');
| 'chunky bacon'