hoi
I would like to learn how to work with databases.
does anyone know a good tutorials or sites?
because at this moment I know nothing about it.
thanks in advance
hoi
I would like to learn how to work with databases.
does anyone know a good tutorials or sites?
because at this moment I know nothing about it.
thanks in advance
For , starting from zero is normal — a short, focused path plus hands-on practice (as suggested) is the fastest way to get useful skills. The checklist below compresses the topics, low-friction practice options, and common traps that beginners run into.
A short, practical example of a common pattern (aggregate per customer):
SELECT c.name, SUM(o.total) AS total_spent
FROM customers c
JOIN orders o ON o.customer_id = c.id
GROUP BY c.name
ORDER BY total_spent DESC; Working with sample databases and a GUI/browser tool makes learning faster. Common beginner pitfalls include missing primary keys, overusing SELECT *, storing numeric values as text, forgetting to commit transactions, and building SQL by string concatenation (risk of injection). Short projects that force schema design and reporting queries give the most durable learning gains.
Best is to try for hands-on experience. Down load and install MySQL, then you have all the resources and tutorials online. Google 'MySQL tutorial' and take your pick
Thanks vadriaan for your post
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.