In phpmyadmin how can I add some text to an empty field but ignore all other fields which already have some text.
I can add text with the following command but it wipes out all the other text.
UPDATE products_description SET products_description = “new text”
thanks
you have to try this query it will work fine…
UPDATE products_description SET products_description = “new text”
WHERE products_description = “”