--- It aims to support SQL users to smartly retrieve data to support data professionals. --- Context: Databases have the data stored in an organized manner. However, we may come across situations ...
LEFT(first_name,2) AS first_2_letters_from_the_left, RIGHT(first_name,3) AS first_3_letters_from_the_right, SUBSTRING(first_name,2) AS starting_from_the_second_letter ...
I'm having to hack a report together to pull data from another field in the same table. The row selection is going to be based on various elements in the above 'foreignkey' field - elements 1, 2, 4 & ...
So I was handed a VERY complex script simply to turn into a pipe delimited file. The problem is that I cant seem to trim anything that used substring. for example I have tried all of these with no ...