I have several thousands of the records and in a few hundred lines columns that are empty, I would like to save these rows in another table
i have this table :
id | name | lati | longi
1 | name1 | 47.482539 | 6.778554
2 | name2 | (empty) | (empty)
3 | name3 | 50.075055 | 1.97328
4 | name4 | 46.333055 | 7.99571
5 | name5 | (empty) | (empty)
I would like in new table to have this
id | name | lati | longi
1 | name2 | (empty) | (empty)
1 | name5 | (empty) | (empty)
what sql command can allow me to do this
thank you