想象一下这是我的两张桌子,
表 user_info user_id、user_name、password
我想编译一个 Java DB 插入语句,在该语句中,根据可用的 user_name 记录检查正在插入的用户名,如果没有匹配的 user_name 则插入!
嗯,我正在尝试这样做,
insert into user_info (user_name, password) values ('someusername', 'password')
where not exists (select user_name from user_info where user_name = 'someusername');