gpt4 book ai didi

MySQL 初学者 SQL 语句输出

转载 作者:行者123 更新时间:2023-11-29 18:22:24 25 4
gpt4 key购买 nike

我刚刚学习 MySQL,正在努力手动确定这些语句的输出。

–SELECT * FROM transactions
WHERE txn_date < '2010-02-26' AND (txn_type_cd = 'debit' OR amount > 100.00)

–SELECT txn_id, txn_date, account_id
FROM transactions
WHERE account_id IN (1, 3) AND NOT (txn_type_cd = 'debit OR amount > 100.00)

Here is the table I am working with

Here are the results that I came up with

我只是想在继续之前确保我没有犯任何错误。谢谢!

最佳答案

您的 SQL 语句和您的答案似乎匹配。不过,我建议在访问表来运行查询之前使用数据库名称。例如。

Use BankDB;

Select txn_id, txn_date
From
Transaction

另外,我的好主意是始终定义要运行查询的表列,因为 * 在所有列上运行查询并增加执行时间。关于我的 SQL 的一些好书: https://createwebsite.pro/best-mysql-book/

关于MySQL 初学者 SQL 语句输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46460468/

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