Search Results

0
votes

Flags in a database rows, best practices.

If the flags have very different meanings and are used directly in SQL queries or VIEWS, then using multiple columns of type BOOLEAN might be a good idea. Put each flag …
5
votes

How do i backup a SQL database using PHP?

Every database system comes with some program for dumping its contents. PostgreSQL: pg_dump …
5
votes

Is SQL the assembly language of the modern world?

No, SQL is a very high-level declarative programming language. If you're just doing insert/update/delete and trivial select queries, it might feel like a very primitive language. But if you …
1
vote

How do I produce a time interval query in SQLite?

PostgreSQL allows the following query. In contrast to your example, this returns an additional column for the day, and it omits the minutes where nothing happened (count=0). …