0

Here is my sqlite databse ,you can see some cell are null or empty string when opening with sqlitemanager.

How can i change all the null and empty string into 0 (zero) in this sqlite database ,not by hand one by one (you can do it in sqlite manager,but it is stupid to change all in one database).

enter image description here enter image description here

1 Answer 1

1
UPDATE grade SET d3 = 0
   WHERE d3 IS NULL OR d3 = ''
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.