I would like to search for records values.
For instance:
ID Name Number
--------------------------
1. First 704
2. Second 60042
3. Third 70
I would like to create query like
SELECT * FROM MyTable WHERE Number= %70% (Namely - includes 70)
Result: 1 and 3
SELECT * FROM MyTable WHERE Number= %04%
Result 1,2
But
SELECT * FROM MyTable WHERE Number= %704%
Result 1
I found HAVING keyword, but it is not the case. There is no INCLUDE or something similar.
For instance:
ID Name Number
--------------------------
1. First 704
2. Second 60042
3. Third 70
I would like to create query like
SELECT * FROM MyTable WHERE Number= %70% (Namely - includes 70)
Result: 1 and 3
SELECT * FROM MyTable WHERE Number= %04%
Result 1,2
But
SELECT * FROM MyTable WHERE Number= %704%
Result 1
I found HAVING keyword, but it is not the case. There is no INCLUDE or something similar.
Comment