I apologise in advance for the very simple question, I am very inexperienced in with databases.
I have the PostgreSQL sever installed with docker compose, I am working with this data for a reserach paper. Would it be better if i converted the data into a sqllite database and then used it or would it be better to use it as postgresql
Also, I can’t seem to find a way to convert it, and trying ot access the data directly through postgresql has me very confused. Can anyone suggest any resources or help me with this problem
Once again, I am really sorry for the very trivial question
I agree with the earlier comment that trying to get the data into SQLite will be a ton of work. It’ll be easier to just use PostgreSQL, especially if you already have it set up.
IIRC, you should be able to run something like this in your musicbrainz-docker checkout to get a psql prompt:
sudo docker-compose run musicbrainz psql postgres -U musicbrainz -h db
After that, you should be able to query it like you would any SQL database. There are a lot of pages online describing PostgreSQL-specific commands. A few from a search: