How to Query Big Data From SQL Server -


in table entries there 200w data in 2015-02-18.

in table entries there 250w data in 2015-03-18.

how can query data table entries, string of entrytext has same in 2015-03-18 not has same string in 2015-02-18`?

i used below statement, slow:

select        entrytext  entries  convert(date, datecreated)='2015-03-18' except select        entrytext  entries  convert(date, datecreated)='2015-02-18' 

you can use first query desired result:

select        entrytext  entries  convert(date, datecreated)='2015-03-18' 

Comments

Popular posts from this blog

node.js - How to mock a third-party api calls in the backend -

amazon web services - Installing MobileFirst 7.0 server on AWS -

Non Unique Username with ASP.Net Identity 2.0 -