If i have multiple tables joined within the same query some are InnoDB others are MyISAM, can i still use the below, given that it only works on InnoDB
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
this is explained in post Any way to select without causing locking in MySQL? and is what i want to do
The tables i want this (none locking) to apply to are all InnoDB, but some of the joined tables are MyISAM.
I cant find the answer anywhere, as the examples only refer to very basic queries.
I did not really want to have to alter all tables to InnoDB.
i do have the above working with no errors, but am unsure if it is actually "stopping the lock"
Any advice much appreciated