Nested Inner join query
问题 I have four tables called attr, data, extradata and syst. I have to do multiple/nested inner joins to get some attributes from all 4 tables, and running into issues because of that. For some background, there is a column called 'ID' in 'data' table that I am obtaining by an inner join between data and extradata as follows: Select X.ID FROM data X INNER JOIN extradata XA ON X.dataID = XA.dataID WHERE X.data = 'condition1' and NOT XA.additionaldata = 'condition2' This ID has to be matched with