As the title says, what is the equivalent of Python’s '%s %s' % (first_string, second_string) in SQLite? I know I can do concatenation like first_string || " " || second_string, but it looks very ugly.
As the title says, what is the equivalent of Python’s ‘%s %s’ % (first_string,
Share
There isn’t one.