我的数据记录表中有如下所示的数据
Name Shiftname operatorname Date plantname line machine
Ashwini Shift1(7-3) Operator 1 2011-05-24 Plant 1 Line1 mc1
Deepika Shift2(3-11) Operator 2 2011-05-24 Plant 2 Line3 mc5
Pradeepa Shift2(11-7) Operator 3 2011-05-25 Plant 3 Line5 mc10
Deepika Shift1(7-3) Operator 1 2011-05-25 Plant 1 Line1 mc1
我想要基于工厂的数据我已经写了这样的代码,但它不显示数据
我不知道问题出在哪里
any1能在这方面帮我吗
我写了这样的代码
select machine,operatorname,line from datalogging1
where plantname='plant1' and date='2011/05/25'
我希望我的输出具有
machine operatorname line
mc1 operator1 line1
发布于 2011-06-04 14:38:23
假设您的工厂名称是"Plant 1",plantname='plant1'
将不起作用!
https://stackoverflow.com/questions/6235162
复制相似问题