I'm using the mysql function LAST_INSERT_ID to fetch the data that an user just inputed. For instance, user1 put in "this is user1 input", after using the insert function, I use the LAST_INSERT_ID function to fetch the data just putted in and immediately return it to user 1's browser.
But I'm worried. Suppose millions users insert the data at almost the same time, say user1 input "this is user1 input" and user2 input "this is user 2 input", would the mysql fetch "this is user2 input" to user1?