I have table with 4 columns.
user_id, user_name, password, full_name
706 , 29682 , 29682 , Nikolay Valeriev Rusanov
707 , 30211 , 30211 , Valentin Ognyanov Karamanchev
When i make the selection i need to show only the last name from the column full_name.
Query should return
user_id, user_name, password, full_name
706 , 29682 , 29682 , Rusanov
707 , 30211 , 30211 , Karamanchev
They are separated with "space". I can't use substr, because every record in the column have different length and i have more than 10 000 rows.
Can u guys give me some sql query how to do it??