我的SQL知识非常有限,特别是关于SQLite,虽然我相信这将是某种通用查询...或者可能不是因为搜索和替换...
我在SQLite中有这个音乐数据库,当然有各种各样的领域,但重要的是"media_item_id"和"content_url".
这是"content_url"的示例:
file:///c:/users/nazgulled/music/band%20albums/devildriver/%5b2003%5d%20devildriver/08%20-%20what%20does%20it%20take%20(to%20be%20a%20man).mp3
我正在寻找一个搜索类似条目的查询,其中"content_url"遵循该模式,并用其他东西替换它("content_url").
例如,通用的"content_url"可以是这样的:
file:///c:/users/nazgulled/music/band%20albums/BAND_NAME/ALBUM_NAME/SONG_NAME.mp3
我想用以下内容替换所有这些条目:
file:///c:/users/nazgulled/music/bands/studio%20albums/BAND_NAME/ALBUM_NAME/SONG_NAME.mp3
我怎么能在一个查询中做到这一点?
PS:我正在使用Firefox SQLite Manager(找不到更好的免费替代Windows).
你可能正在寻找这个replace
功能.
例如,
update table_name set content_url = replace(content_url, 'band%20albums', 'bands/studio%20albums') where content_url like '%nazgulled/music/band_20albums/%';
http://sqlite.org/lang_corefunc.html上有更多文档