I have a MySQL server's database on cloud say empdb.
This server has only one user (who has all admin privileges) say empdb_admin with password
I created an application which logs in the database using this login and it can perform CRUD activities with ease.
Since my application is performing well, I install it on 50+ desktops.
As per my understanding, all 50 desktops will log in using only one user admin credentials (empdb_admin).
What will happen if all 50+ PC perform CRUD operations simultaneously? Will there be collision or loss of data?