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.
私はテーブル名Usersとテーブル名Applicationを持っています。
Usersテーブルの3つの列(id、password、privilege)に3つのデータを挿入したいと思います。
アプリケーションテーブル(email_address、password)から2つのデータを抽出し、Usersテーブルの特権列に独自のデータを追加するにはどうすればよいですか。
これが紛らわしい場合は申し訳ありません。
次のクエリを使用できます。
INSERT INTO `Users` (id, password, privilege) SELECT email_address, password, 'privileges' FROM `Application`
ここprivilegesで、はユーザー権限を表します
privileges