I have problem when CRUD table in same time,
error message : "Transaction (Process ID 72) was deadlocked on lock resources with another process and has been chosen as the deadlock victim"
Database MS SQL Server 2008
OS Ubuntu
PHP 7.1.2
According to this source :
https://sqlbak.com/academy/transaction-process-id-was-deadlocked-on-lock-resources-with-another-process-and-has-been-chosen-as-the-deadlock-victim-msg-1205/
You need to separate CRUD Process with Begin Transaction on each process,
For example :
This help DBMS to execute query on the same time.
Maybe it might help you in the case.
#CMIWW