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.
由于版本问题,我不能使用 except 关键字。这里的任何人都知道。我如何选择除包含特定文本的行之外的所有行。选择除包含特定文本的行之外的所有行。由于 MS SQL 中的版本问题,我无法使用除关键字
select * from your_table where some_column not like '%specific text%'
Select * from Table1 where EmpPU NOT Like '%CSE%' AND EmpPU NOT Like '%ECE%' AND EmpPU NOT Like '%EEE%'