I assume the column data type would be a character string type like a varchar or text.
You should be able to use the RIGHT function in your select query as explained in this link https://www.w3schools.com/sql/func_sqlserver_right.asp
SELECT RIGHT ([Description], 10) AS [Description]
FROM tablename
Notes:
Square brackets [] added because Description would be a keyword in SQL Server.
The "As columnanme" would be needed or else the the column would not be assigned a name (when I tried it showed "(No column name)"
If the column data is less than X (number specified), it will return the data. Ex column has String123, String123 will be returned.
If the column data is empty '', it will return empty.
If the column data is NULL, it will return NULL.