↧
Oracle / PLSQL: InitCap Function
When running Oracle PL/SQL Queries, if you want to make a value “title case”, where the first letter of each word is capitalized, then use the INITCAP() function. The syntax for that looks like this:...
View ArticleOracle / PLSQL: Getting a List of a Table’s Columns
Sometimes you need to know the column names for a specific table. I have needed this in the past when loading XML data into an empty table. For each node, I would check to see if a matching column...
View Article