Hi,I need to select records in column that start with '% ' -- %space e.g. column A = % mytestI tried select column name with like operator but it select records who start with % and ignore spaceselect columnA from table where columna like '% %';
↧