在“标题”字段中,我的名称为:“X和y”。
此致 伊戈尔
答案 0 :(得分:0)
试
delete from table where title like '% %'
但事先备份表格,以防您有不想要删除的记录
答案 1 :(得分:0)
尝试使用like和%operations
delete from [table name] where [Column name] like '%[text to find]%'
删除条目以x开头并以y
结尾的示例 delete from [table_name] where [title] like 'x%y'
答案 2 :(得分:0)
必须删除短语" Word1 Word2 Word3" DELETE命令中单词之间的间距我改为" _" - 它对我来说很完美!
DELETE FROM tablename WHERE title LIKE 'Word1_Word2_Word3;