We can use SPACE function to replicate spaces for a string. Consider the following statement select 'A'+space(10)+'B' The result is ------------ A B As you see space function adds 10 spaces between the string A and B. Note that the space function though accepts any positive number, it...