Getting error not able remove the record

export PATH=$PATH:/opt/IBM/db2/V9.5/95fp4/bin
DB2INSTANCE=bancbcb1
export DB2INSTANCE
db2 "connect to dyaxprpt user xyz using byx"
echo "Load lastest data start"
Row=$(db2 �x �delete from xyz.ROL_yxpwhere axl_ING_ID in(50127,50455,503458,175748)�) 
If [ $Row == 0 ] ; then 
echo �no data deleted�
elif [ $Row > 0 ]; then
echo �$Row data deleted �
fi

getting error in if else condition

try:

if [ "$Row" = 0 ]
if [ $Row -eq 0 ]

elif [ $Row -gt 0 ]