Hi
I have a view:
SELECT * FROM VW_DEVOLVESELECCAO
I want to add another record to the view but I cannot open the view and change the code.
Suppose the result set of the view is:
1,1,1
1,2,1
......
1,3,4
I want to add the value pedro
like
1,1,1,pedro
1,2,1,pedro
...............
1,3,4,pedro
How can I change the sellect to join the resukt of the view with the string that I want to send?
Thanks