i insert the records into table xyz.
when i go to to mysql db to check out the inserted record it does not shows.
But when i throw a where query like....where id=smthing,it displays the record.
This is very strange.Why it is happening?
example:
i inserted record into table:
id=321
name=rahul
age=21
so it does not shows in the mysql db table.
id name age
1 hi 54
.
.
.
256 hu 23
But when i search with query like
select * from table where id=321,it shows the record
id name age
321 rahul 21