Search Results

2
votes

SQL Server / MySQL / Access - speeding up inserting many rows in an inefficient manner

The single biggest thing that will kill performance here is the fact that (it sounds like) you're executing a million different INSERTs against the DB. Each INSERT is treated as a single operation. …
1
vote

SQL query to exclude items on the basis of one value

One thing that isn't quite 100% clear to me: do you want all fruit that hasn't been rated by user 10, or just fruit that has been rated by other people but not by user 10? e.g. should frui …
1
vote

Converting MSSQL GetUTCDate() into PHP/Unix/MySQL Ticks

You can do this in MSSQL relatively easily. For the current date: SELECT DATEDIFF(s, CONVERT(DATETIME, '1970-01-01'), GETUTCDATE()) returns the INT number of secon …
1
vote

sql group by versus distinct

A little (VERY little) empirical data from MS SQL Server, on a couple of random tables from our DB. For the pattern: SELECT col1, col2 FROM table GROUP BY col1, col2 …