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
Post a Comment