Get UnCommitted Data in MySQL
问题 In SQL Server we can write below SQL Queries to get Un-Committed data in database . This means the data that is still under transaction and Transaction is not complete. SQL Server Query Select * from TableName With(NoLock); Is there any equivalence in MySQL database to get data even if table is locked ? I am trying this in PHP CodeIgnitor 回答1: Found an article with title " MySQL NOLOCK syntax " http://itecsoftware.com/with-nolock-table-hint-equivalent-for-mysql SQL Server WITH (NOLOCK) looks