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.
この名前の列があるテーブルがあります: bureau d'étude
select を実行すると:
String sql = "select bureau d'étude from table";
サーバーに構文エラーが表示されます。このアポストロフィを非表示または置換する方法は?
String sql = "select `bureau d''étude` from table";
列名にはスペースが含まれているため、必ず ` でカプセル化してください。
さらに、別の一重引用符で一重引用符をエスケープできます。