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.
我有一个表名用户和一个表名应用程序。
我想在用户表的 3 列(id、密码、权限)中插入 3 个数据。
如何从应用程序表(电子邮件地址,密码)中提取 2 个数据,然后在用户表的权限列中添加自己的数据。
对不起,如果这令人困惑。
您可以使用以下查询:
INSERT INTO `Users` (id, password, privilege) SELECT email_address, password, 'privileges' FROM `Application`
whereprivileges代表用户权限
privileges