2
votes
Flags in a database rows, best practices.
For many cases, it depends on a lot of things - like your database backend. If you're using MySQL, for example, the …
2
votes
Difference between drop table and truncate table?
Truncating the table empties the table. Dropping the table deletes it entirely. Either one will be fast, but dropping it will likely be faster (depending on your database engine).
If you do …
-1
votes
MySQL5: Delete all but the 50 newest rows
Assuming this query selects the rows you want to keep:
SELECT timestampcol FROM table ORDER BY timestampcol DESC LIMIT 49,1;
Then you could use a subquery like so: …
