我不能直接使用SQL,所以我有点受限制。
我正在使用的程序上的过滤器使用SQL,但基本上起着
$(window).resize(function () {
if ($(this).width() > 667 && $(".nav").is(":hidden")) {
$(".nav").removeAttr("style");
}
});
语句,然后输入我提供的任何输入。
我有一个记录列表,我需要将每个记录重复,以使下表将返回select * where
1和3以及所有关联的列:
WO#
我是否想在没有分组的情况下做一些不可能的事情?
答案 0 :(得分:1)
也许EXISTS
可以找到公仔吗?
select *
from yourtable t
where exists
(
select 1
from yourtable d
where d.Site = t.Site and d.WO# != t.WO#
);