I am not quite sure I understand your constraints, but probably you want to use RegionPlot3D
. Here is an example which may be close to yours:
RegionPlot3D[
z > 0 && z < 4 Sqrt[x^2 + y^2] && z > 2 Sqrt[x^2 + y^2], {x, -10,
10}, {y, -10, 10}, {z, 0, 20}]
Also ContourPlot3D can give some insight:
ContourPlot3D[{z == 0, z == 4 Sqrt[x^2 + y^2],
2 == Sqrt[x^2 + y^2]}, {x, -10, 10}, {y, -10, 10}, {z, 0, 20}]