from left-
SELECT LEFT('Name1', LEN('Name1')-1)
Result-Name
from right-
SELECT RIGHT('Name1', LEN('Name1')-1)
Result-ame1
SELECT LEFT('Name1', LEN('Name1')-1)
Result-Name
from right-
SELECT RIGHT('Name1', LEN('Name1')-1)
Result-ame1
REPLICATE ( string_expression ,integer_expression )
select-select rtrim(Columns Name) +REPLICATE(' ',Total Length- LEN( rtrim(Columns Name)))+'1'
from tblMstVFAMem where len(Columns Name)>0 and Columns Name is not null
update-update TableName set Assets_F= rtrim(Columns Name) +REPLICATE(' ',Total Length- LEN( rtrim(Columns Name)))+'1'
where len(ColumnsName)>0 and ColumnsName is not null
–> To highlight a block of code in Notepad++, please do the following steps step-1 :- Select the required text. step-2 :- Right click...