我想从C_Table哪里选择Name='John'并使用like运算符.例如,
select Name from C_Table where Name='John' AND where Details like %Boy%
Run Code Online (Sandbox Code Playgroud)
我该怎么做呢?
(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 |
-----------------------------------------------
Run Code Online (Sandbox Code Playgroud)
你几乎拥有它:
select name from table where name="John" and details like '%Boy%';
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
15502 次 |
| 最近记录: |