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.
我需要一个 SQL 查询语句来选择列 O 不等于 0 的行。
例子:
Col A Col O Pencil 1 Ballpen 0 Paper 5
我想将工作表放在数据表中,但不包括在 O 列具有 0 值的行。我选择的单元格从第 13 行开始,因为 excel 文件在前 10 行仍然有标题和标题。如果我没记错的话,它会像这样开始:
SELECT * FROM SHEET1$ WHERE. . .
假设 O 列的名称是“O”,
Select * from sheet1$ where O <> 0;
不过,O 列可能有另一个名称。
如果列名 O
SELECT * FROM SHEET1$ WHERE o <> 0 ;