Databases and spreadsheets are 2 different things, and spreadsheet design is bad for database work. Sheets are wide and short; tables are narrow and tall. Data related to an entity goes into its own table; related data goes in related tables and you match up with joins on foreign and primary keys for one to many situations. For many to many, you introduce a "middle" table, commonly known as a junction table. I can't give too much focused guidance because I have no knowledge of your process, but it sure looks like you're off to a bad start - too many tables, tables storing images, and perhaps multi-value fields as well.
Regardless, the only way you can eliminate the zeros is with a bunch of UNION queries, which is a sure sign of improper design. What you ought to do is research db normalization. Sorry!
The more we hear silence, the more we begin to think about our value in this universe.
Paraphrase of Professor Brian Cox.