|
In sql server.
Execute select * from Book where BookName like'%C language%', no record
There are definitely records in the table, but I can't find it, remove the Chinese,
Change to select * from Book where BookName like'%C%' to find,
It feels strange, execute select'test' in the query analyzer, and two question marks are displayed
What's going on? How to solve it? |
|