If data like
"700133 70013303102021SC 25 210604580000000440"
"700133 70013303102021SC 26 210604600000010000"
need roll number like "80000000440" and "600000010000" how will separate the data and to load in table which are already created
If data like
"700133 70013303102021SC 25 210604580000000440"
"700133 70013303102021SC 26 210604600000010000"
need roll number like "80000000440" and "600000010000" how will separate the data and to load in table which are already created
There isn't sufficient Information about DB and how you would load this data to any table. Because of this I could share only SELECT Query with you :
SQL SERVER:
SELECT RIGHT('700133 70013303102021SC 25 210604580000000440', 11) AS String;
ORACLE:
select substr('700133 70013303102021SC 25 210604580000000440',-11) AS String from dual;