This commit is contained in:
Roger Rutishauser 2024-10-04 14:22:20 +02:00
parent 2ae8a0f43f
commit b6160ff23b

View File

@ -204,7 +204,7 @@ HAVING c > 1
#### Select to file #### Select to file
```` ```
mysql -uroot -e "use atom_A; select io.identifier, io.id, information_object_i18n.title from information_object io left join information_object_i18n on io.id = information_object_i18n.id where io.identifier IS NULL or io.identifier like '#%' or io.identifier = '?' order by identifier;" > /home/ubuntu/identifier_not_number.csv mysql -uroot -e "use atom_A; select io.identifier, io.id, information_object_i18n.title from information_object io left join information_object_i18n on io.id = information_object_i18n.id where io.identifier IS NULL or io.identifier like '#%' or io.identifier = '?' order by identifier;" > /home/ubuntu/identifier_not_number.csv
``` ```