-1
From what I understand Oce needs to leave everything without spaces
Here is an example of an SQL statement to remove these spaces and leave everything together.
SELECT REPLACE(sku, ' ', '' ) FROM oc_product;
Using the command REPLACE thus, all space in this column will be 'removed' in the query
Command to UPDATE:
(Only run this command if you really want to change the data in the database! Otherwise use the previous command)
UPDATE oc_product set sku = REPLACE(sku, ' ', '' )
just put this query the way it’s working right ?
– Felipe Henrique
exact Kirito, in this query it will replace the white spaces in your QUERY, if you really want to change in the bank there will be an UPDATE
– Clayton Tosatti
I added the syntax that would be used in UPDATE
– Clayton Tosatti