Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户执行相同的 PHP 文件时。
MySQL 查询按什么顺序执行?是这样的吗?
file-to-file(collect the query/by file) Q1-Q2-Q3,Q1-Q2-Q3
或者
time-to-time(according who executed first/by time) Q1,Q1,Q2,Q2,Q3,Q3
它基本上是不时的......就像先到先得一样。
另一个有趣的事情是当系统中有多个用户时,多个 php 实例正在运行。php-mysql 驱动程序负责所有这些并在每个实例中并行执行。当然,对于单个实例,系统根据先到先得的原则维护作业(查询)列表。
:)