0
To test my forms, I ran multiple fills with the word "test" in the fields. Now I wanted to clean the BD, but I’m having difficulties to delete several lines with the same text snippet "test"
I am applying the following command, but no line is affected.
Delete FROM [DB_ControleDemandas].[dbo].[formulario] where Datas = '%Teste%'
The correct syntax for your Where would be: Where Dates like '%Test%'
– Netinho Santos
I knew it was simple, rs. Thank you!
– Daniel Gomes