Hello All,
I am trying the following query
I get an error ORA-01722: invalid number, as you can see I ma trying to concatenate the name fileds and return it as a single field.Please let me if its possible and if not anyother way to do it .
Thanks in Advance!
I am trying the following query
Code:
select first_name + ' ' +middle_initial+ ' '+last_name as name, user_ids.racfid from user_ids,user_roles where user_ids.racfid = user_roles.racfid and user_roles.role_name = 'Publisher'
Thanks in Advance!