Inserting and viewing data simultaneously from a single table
问题 I want that as a user is inserting data into a table, he is also viewing it simultaneously. For this if I use a single table , then will it take more time & processing load because the 2 processes: INSERT and SELECT, both would occur on the same table? So I want that both the processes are executed separately on two different database objects. Like INSERT should be done on one database object and SELECT should be done from the other but the data which in inserted, would be seen by the Select