やろうとしていること/起きていること
csvファイルからMysqlにデータを取り込みたいです。
しかしインポートすると下記のようにカラムがずれている(?)もしくは正常にとりこめていない状態になってしまいます。
原因と対処法を教えて欲しいです。
入力したコマンド
load data local infile"/Users/[Myname]/XXX/challenge3/data/house_data.csv"into table homes fields terminated by ',' optionally enclosed by "";
作成したモデル
class CreateHomes < ActiveRecord::Migration[6.0] def change create_table :homes do |t| t.string :firstname t.string :lastname t.string :city t.integer :num_of_people t.string :has_child t.timestamps end end end
回答1件
あなたの回答
tips
プレビュー