I have a Track-geometry table with a bunch of rows. My primary Key is the ID of the single track. Its Datatype is bigint. I got 4177 Rows in the table.
Now when i do: Select * from mytable;
it shows me the dataoutput with 4177 rows with the informations.
When I execute Select * from mytable;
again, the dataoutput adds 1000 Rows. Now I have 5177 Rows.
When I execute the statement again -> dataoutput with 7177 Rows.
When I execute: Select Count (*) from mytable;
then it shows me 4177 Rows.
I dont get how the dataoutput is showing me more and more row (probably doubling some rows). The ID's are unique.
Other tables just show me the same rows in the dataoutput no matter how often I Select * from othertable;
I dont know if the columns and the table is important for that but since the table got private Informations i can't uploade the table.