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.
国を含む Excel シートをデータベース テーブルにインポートしました。
残念ながら、すべての行には先頭に空白があります。
では、これらの空のスペースを削除するにはどうすればよいですか?
これにより、先頭と末尾のスペースが削除されます
Update tablename set fieldName = ltrim(rtrim(fieldName));
SQLサポートの一部のバージョン
Update tablename set fieldName = trim(fieldName);
先頭を削除したいだけの場合
update tablename set fieldName = LTRIM(fieldName);