Skip to content

How to find rows in SQL DB with a definite word length?

Good day, I’ve got a column with text in my table, but i need to export words 17 letters long only in it. I tried to use but my query newer completes. This is an example of text cell REIGHT CAR DUMP T.M. “HOWO”, COMMERCIAL NAME A7, MODEL TOTAL 4 PIECES, WITHOUT PACKING IDENTIFICATION NUMBER …

Query for similar phrases

Is there any way to match ‘United States of America’ with ‘United States’ in SQL? I have the country with the name ‘United States’ stored in the database. The query below should retrieve the item from the database with the name ‘United States’. Thank you! Answer…