I have a query as follows
select
First_Name+' '+Middle_Name+' '+Last_Name as studentname,
Batch,
Batch+1 as batch1,
Admtd_Semester,
Program,
Title,
@His_Her as His_Her,
Fathers_Name,
Branch_Name,
Student_Mobile_Number,
Fathers_Mobilenumber,
CONVERT(VARCHAR(10),GETDATE(),110) as date
from
STUDENT_Admission_1212341
In the above query, batch+1 gives the output as 2014 in which I need only 14. How can I trim it?