正确的插入和查询:

INSERT INTO itemlink(id,name)
    VALUES (1,' ');

select * from itemlink where il_stylecd=' ';

插入和查询时中间都有一个空格

 

错误的插入和查询:

INSERT INTO itemlink(id)
    VALUES (1);

select * from itemlink where il_stylecd='';

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2021-11-27
  • 2022-02-23
  • 2022-12-23
猜你喜欢
  • 2021-10-27
  • 2021-12-31
  • 2021-04-27
  • 2022-12-23
  • 2022-12-23
  • 2021-07-06
  • 2022-02-24
相关资源
相似解决方案