16 tm 19 Flashcards
custom table city en state uit database customers
SELECT CONCAT(city, ‘ , ‘ , state) FROM customers
custom table city en state uit database customers en geef de nieuwe custom table de naam new_address
SELECT CONCAT(city, ‘ , ‘ , state) AS new_address FROM customers
toon de tabel name in CAPS uit database customers
SELECT name, UPPER(name) FROM customers
command voor gemiddelde van die tabel
AVG(de tabel)
optellen van die colom totaal
SUM(de tabel)
totaal aantal producten wat klantnummer 6 heeft gekocht in database items tabel name
SELECT COUNT(name) FROM items WHERE seller_id=6
bereken de algemene prijs waar klantnummer 6 producten voor heeft gekocht. tabel cost database name
SELECT AVG(cost) FROM items WHERE seller_id=6
toon van seller id 12 aantal producten, duurste product en algemene prijs product database items
SELECT COUNT(*) AS item_count,
MAX(cost AS max,
AVG(cost) AS avg
FROM items WHERE seller_id=12
toon een lijst met seller id en hoeveel producten die hebben gekocht
SELECT seller_id,COUNT(*) AS item_count FROM items GROUP BY seller_id
toon lijst met seller id en hoeveelheid producten gelijk of meer dan 3
SELECT seller_id, COUNT() AS item_count FROM items GROUP BY seller_id HAVING COUNT () >=3