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 -

node.js - Why do I get "SOCKS connection failed. Connection not allowed by ruleset" for some .onion sites? -

matlab - 0-by-1 sym - What do I need to change in order to get proper symbolic results? -