gpt4 book ai didi

sql - SQL中如何使用 'like'运算符?

转载 作者:行者123 更新时间:2023-12-02 05:27:35 25 4
gpt4 key购买 nike

我想从 C_Table 中选择 Name='John' 并使用 like 运算符。例如,

select Name from C_Table where Name='John' AND where Details like %Boy%

我该怎么做?

(Table name is C_Table)
-----------------------------------------------
Name | P_No | C_No | Details |
-----------------------------------------------
John | 001 | 001 | Good Boy |
John | 002 | 002 | Naughty Boy |
John | 003 | 003 | Very Bad Boy |
Mary | 004 | 004 | Beautiful Girl |
Mary | 005 | 005 | Pretty Girl |
Mary | 006 | 005 | Gorgeous |
-----------------------------------------------

最佳答案

你几乎成功了:

select name from table where name="John" and details like '%Boy%';

关于sql - SQL中如何使用 'like'运算符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3560564/

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