Search Results

0
votes

Tricks for generating SQL statements in Excel

Exporting an excel file as csv can be an alternative option (see Bill Krawin's post - as a new poster, I can't add comment yet). However be warned that you will probably have to change the formatti …
0
votes

IN vs. JOIN with large rowsets

It's generally held that a join would be more efficient than the IN subquery; however the SQL*Server optimizer normally results in no noticeable performance difference. Even so, it's probably best …
0
votes

MySQL 1 millon row query speed

Does there need to be an index on play_date, or move the position in the composite index to second place? …
0
votes

select 10 rows per day with order

After looking at (the ever excellent) xaprb blog from Baron Schwarz, http://www.xaprb.com/blog/2006/12/02/ …