tshm
05-27-02, 00:03
| I want to get the records from table2 and table1 that table2.id2(string) include table1.id(string),means table1.id is a substring in table2.id2,can this sql work correctly? Thanks! SELECT table1.abc, table1.id, table2.id2, table2.ddd FROM table2 INNER JOIN table1 ON table2.id2 like table1.id |