i know how to do this now with UPDATE/SELECT's
but not im sure why it doesn't compile with DELETE FROM.
/** failures */
DELETE FROM `user_invitems` AS l USING `user_credentials` AS c WHERE l.id = c.id AND c.name = 'testing123'
DELETE FROM `user_invitems` AS l, `user_credentials` AS c WHERE l.id = c.id AND c.name = 'testing123'
DELETE FROM `user_invitems` AS l, `user_credentials` AS c AS l.id = c.id AND c.name = 'testing123'
using 2 tables 1 to pick name from and match its id row to a different tables row.
also another question relating speed its really odd on the working UPDATE/SELECT which is exactly like DELETE FORM except it works..
for some reason those UPDATE/SELECT process for this took around 0.0130 secs to get id from a different table and do its process which is alot more compared to normal SELECT/UPDATEs on a preset id which are like 0.0020 secs