gpt4 book ai didi

mysql - mongodb 到 sql 转换 1

转载 作者:行者123 更新时间:2023-11-29 06:19:11 26 4
gpt4 key购买 nike

db.music.find({deleted: {$ne: true}});

以上代码在mongo db中

我想知道如何在 sql 中为此编写等价物

谢谢

最佳答案

select * from music where deleted != true;

或者,优化:

select * from music where deleted == false;

根据 SQL 的版本,false 可以是 'false'0'0'

假设:

  • 您已经在正确的数据库上(无需将 use my.db 放在脚本的开头)
  • 您的已删除 列是 boolean 或 bit 类型。

关于mysql - mongodb 到 sql 转换 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34231983/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com