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

java - Could not locate OpenAL library -

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

sorting - opencl Bitonic sort with 64 bits keys -