Lid |
|
Hoi mensen,
Ik zit met een query te stoeien, maar ik kom er niet echt uit.
Wat wil ik met de query
Er is een lijst met items, wanneer een gebruiker een item uit de lijst koopt dan moet dat item niet meer zichtbaar zijn in de lijst.
SELECT DISTINCT (shop_structures.structure_id), structure_name, type_name, type_price, structure_type_id, type_description
FROM shop_structures
INNER JOIN shop_structures_type ON ( shop_structures_type.structure_id = shop_structures.structure_id )
LEFT JOIN users_shop ON ( users_shop.type_id != structure_type_id )
WHERE users_shop.user_id = 2
AND users_shop.product = "s"
ORDER BY structure_name ASC
SELECT DISTINCT (shop_structures.structure_id), structure_name, type_name, type_price, structure_type_id, type_description FROM shop_structures INNER JOIN shop_structures_type ON ( shop_structures_type.structure_id = shop_structures.structure_id ) LEFT JOIN users_shop ON ( users_shop.type_id != structure_type_id ) WHERE users_shop.user_id = 2 AND users_shop.product = "s" ORDER BY structure_name ASC
|