Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的数据库上运行多个查询,但我想对第一个查询的结果应用第二个查询。我对数据库没有太多经验,所以如果这是一个愚蠢的问题,请原谅。
例子:
SELECT * FROM table WHERE table.column='criteria';
在第一个查询的结果上,我想应用另一个过滤器:
SELECT * FROM table WHERE table.column2='criteria2';
先感谢您!
如果您想应用另一个过滤器:
SELECT * FROM table WHERE table.column='criteria' AND table.column2='criteria2';
尝试这个: