id book_title
-----------------
1 Harry,Potter
2 Limitless
案例1:
select * from A where book_title like '%Harry%'
Output:
1 Harry,Potter
它的工作原理
但如果2:
select * from A where book_title like '%HarryPotter%'
Output:
<Nothing>
當然,因爲這個參數必須匹配哈利·波特。
是否有任何SQL語句,可以顯示輸出如下:
Parameter: HarryPotter
SQL: ?
Output: 1 Harry,Potter
感謝。
這是工作。非常感謝。 – user3789802