sql - Query to search data -


I have two tables, which have specific text keywords in one column and one column has another table with large text , Each has different number of records I want to type in the query to check whether the second table has any keyword from the text field 1 table. I want to see all my keywords along with all the records in the text field of the second table.

Thanks in advance.

put you the as clause in JOIN needed. Select Tabletwo T2 from Select

  SELECT * TableOne t1 ON2.ColumnOne '%' + t1.ColumnOne + '%'  

Comments

Popular posts from this blog

Editing Python Class in Shell and SQLAlchemy -

import - Python ImportError: No module named wmi -

uislider - In a MATLAB GUI, how does one implement a continuously varying slider from a GUIDE created .m file? -