Multiple user different crud data

good evening, I want to ask if anyone has a tutorial on how to make a multiple user view where later each user will have a different view where each user can do crud without seeing the crud data from other users. Thank you

In each table add a column userId and for all database operations add a WHERE clause like this

... WHERE userId = <current user>

Taifun

are you have some tutorial about this?

try a Google search https://www.google.com/search?q=mysql+multiple+user+tutorial
Taifun

thankyou, i will try it