Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
t12 つのテーブルを結合したいので、t2その列の値はt2ですany valid string including null followed by a value in column of t table。
t1
t2
any valid string including null followed by a value in column of t table
私は次のようなものが欲しい:
SELECT * FROM t_cities c JOIN temp_table t ON c.NAME LIKE "%t.token"しかし、正確な構文はわかりません。上記のステートメントはもちろんエラーになります。
SELECT * FROM t_cities c JOIN temp_table t ON c.NAME LIKE "%t.token"
試す
SELECT * FROM t_cities c JOIN temp_table t ON c.field = t.field where c.NAME LIKE "%t.token"