Middle
Have you worked with databases in home projects? Did you perform queries from tables, insertions?
sobes.tech AI
Answer from AI
In home projects, I often used databases for storing and processing data. For example, I used SQLite or PostgreSQL to make queries with SQL statements like SELECT * FROM users WHERE age > 18; and insert data using INSERT INTO users (name, age) VALUES ('Ivan', 25);. For the frontend, I often used APIs that interact with the database on the server, but I also tried working with IndexedDB for storing data on the client side.