-1
I would like to delete some useless records from my database
They are, for example: -2046820062 -2046820165 -2046820183
In short, all records that start with the symbol - (less) of my data2 column
I’ve tried something like:
DELETE SUBSTRING_INDEX(data2, '-', 1) FROM tabela
but without success.
That column
data2
is of what type?– Marcelo Shiniti Uchimura
the column is int(11)
– JavaScript