This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
dev:sql:functions:proper [2010/07/08 17:14] els |
dev:sql:functions:proper [2016/06/28 22:38] (current) |
||
|---|---|---|---|
| Line 4: | Line 4: | ||
| ===== Description ===== | ===== Description ===== | ||
| Converts a string to proper case, meaning that the first character of each word in made upper case and the remaining characters are lower case. | Converts a string to proper case, meaning that the first character of each word in made upper case and the remaining characters are lower case. | ||
| + | |||
| + | This function returns the same datatype as the passed parameter. | ||
| + | |||
| ===== Syntax ===== | ===== Syntax ===== | ||
| Line 15: | Line 18: | ||
| ===== Examples ===== | ===== Examples ===== | ||
| ==== Example: Column ==== | ==== Example: Column ==== | ||
| - | <code SQL> | + | <code> |
| > select $proper(name) nme from individuals; | > select $proper(name) nme from individuals; | ||
| Line 28: | Line 31: | ||
| Kathleen Tucker | Kathleen Tucker | ||
| </code> | </code> | ||
| + | ====== Additional Resources ====== | ||
| + | |||
| + | See also: | ||
| + | {{page>dev:sql:functions:see_also_string&nofooter&noeditbtn&noheader}} | ||
| + | |||
| {{page>:bottom_add&nofooter&noeditbtn}} | {{page>:bottom_add&nofooter&noeditbtn}} | ||