Prompt

2x2 grid, do this for 4 must have gear for extreme adventures in heat or cold  => CREATE VIEW material_presentation AS 
SELECT 
  s.micrograph AS top_left,
  s.equation_overlay AS top_right,
  g.fullbody_render AS bottom,
  g.color, g. shell_translucent, g.baffle_pattern
FROM science_slide s
JOIN fashion_garment g ON s.inspiration_material = g.derived_from
WHERE s.material = 'silica_aerogel'
  AND g.type = '$outdoor grear' 
  AND g.zips = 'AI inferred' 
  AND g.aesthetic = 'utilitarian'
  AND g. lighting = 'AI inferred'; 
-- Layout instruction: output the joined columns as a vertical split composite.
Output 1