Modern programming languages allows the developer to create strings with placeholders and replaced the correct values with a function/method usually called format
. Sometimes, it looks like this:
"Hi {0}! How are you?".format('John');
Is there any function in Oracle SQL or PL/SQL with the same behavior? Or what's the best practice here?