0

WHen i hit the follwing query I get 1 row

SELECT * FROM servers WHERE Node='abc_deeh32q6610007'

However when I hit the following query 0 rows are selected

SELECT * FROM servers WHERE Node LIKE '%_deeh32q6610007'

I am using MySQL DB.

2
  • can you pls share the table design so that i can check through fiddle Commented Mar 14, 2018 at 6:33
  • You want create table query? you can create a table named servers with just 1 column Node of type var Commented Mar 14, 2018 at 6:57

1 Answer 1

3
SELECT * FROM servers WHERE Node LIKE '%\_deeh32q6610007'
Sign up to request clarification or add additional context in comments.

1 Comment

Even this returned 0 rows

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.