What?
A note for myself on some code to convert a string of two names into a string made up of the first name and then using the initial of the second name.
-- What I have
John Smith
Fred.Bloggs
-- ...
... as well as the customer's surname (method #1 would not be guessed by date/time):
string generateRetrievalCode()
{
// init
v_Output = "";
l_Output = List:String();
l_Alphabet = ;
...
...
Examples of usage:
SELECT
ufn_ProperCase([Surname])
FROM
employees
Additional:
Note how the above doesn't convert postal codes, specifically British postcodes, which isn't included in ...
... in 0.4 seconds. So where's the problem?
How?
Left to its own devices, a search for "SMITH" as a surname would make the report spin for about 10 minutes without the possibility to cancel (link not ...
... REGEXP_LIKE(S_SURNAME, '[^a-zA-Z0-9]')
-- returns all rows where the student surname contains non-alphanumeric characters
-- eg. O'Brien will be returned
SELECT * FROM STUDENTS WHERE REGEXP_LIKE(S_SURNAME, ...
... equation can be written:
Table: DMExtractEmployeeTable
ID ForeName SurName
---------------------------------
1 Joel Lipman
2 JOE THE GREATEST
DECLARE ...
What?
This is a quick note to show you how to convert a given comma delimited string into a database table:
Given: "Title,Forenames,Surname"
Return:
ID Value
------ ----------------
...
... giving it the label value to indicate to the user to enter their Name (as in forename or surname).
onFocus() - What to do when the user moves their cursor into the field or clicks on it. In this specific ...
This was called a Data-Scrambling Function but it depends on what you mean by "scrambling". This is a function which merely uses the same characters but switches their order randomly, so I've renamed ...
... NVL(student_details.studentSurname, 'Smith') "SURNAME"
FROM
student_details
WHERE
student_details.studentID = v_studentreference;
This errors when ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.