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.
以下の sql クエリを実行するより良い方法はありますか? ロケーション列には完全一致のみが含まれているため、Like ステートメントが最適なオプションであるかどうかはわかりません。
INSERT INTO test_reports (Table_Name, Total_Count) SELECT "table1", COUNT(1) FROM table1 WHERE location LIKE 'birmingham'
検索文字列にワイルドカードはありません。ワイルドカードを使用しない場合は、likeとまったく同じ=です。
like
=