Home > OS >  How to check %match between 2 string in prestosql?
How to check %match between 2 string in prestosql?

Time:01-08

What im looking for is I have 2 words e.g. 'Family' and 'Family Tree'

then I would love to know that how much does both texts match to each others.

let say 'Family' and 'Family' >> 100 %

not sure any workaround or not.

Thank you so much.

CodePudding user response:

you can use like.

select * from tablename where fildname like '           
  •  Tags:  
  • Related