Questions tagged «if-not-exists»

4
MySQL:创建索引(如果不存在)
如果不存在,是否可以在MySQL中创建索引? MySQL不支持明显的格式: CREATE INDEX IF NOT EXISTS index_name ON table(column) ERROR 1064 (42000): You have an error in your SQL syntax;... MySQL版本(mysql -V)是5.1.48,但我认为MySQL CREATE INDEX IF NOT EXIST在所有版本中都缺乏此功能。 只有在MySQL中尚不存在索引时,才创建索引的正确方法是什么?

4
从列表中查找表中不存在的ID
说我有以下架构和数据: create table images( id int not null ); insert into images values(1), (2), (3), (4), (6), (8); 我想执行如下查询: select id from images where id not exists in(4, 5, 6); 但这是行不通的。上面的情况应该返回5,因为它在表记录中不存在。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.