标签: sql sql-server rdbms
我在表中存储了一个Name和Int,其中Int列的值为0或1。
N1, 0 N2, 0, N3, 1 N4, 0, N5, 1 N6, 0, N7, 0, N8, 1.
我需要键值对输出为(N1,N3)WHERE在N1中它有0,然后1在N3。相同的方式(N1,N3),(N4,N5)和(N6,N8)
如何使用SQL有效地为超过100k的记录编写查询?