Media List Editor Examples
#45
(2017-12-18, 10:39)DanCooper Wrote:
(2017-12-18, 03:12)Toxic Man Wrote:
(2017-12-17, 18:49)DanCooper Wrote: SELECT * FROM movielist WHERE movielist.MoviePath LIKE "\\servername\folder\subfolder1%"

Excellent.  This works, but is picking up movies that are also in \\servername\folder\subfolder2

Is that because of the operator LIKE being used in this query?     
LIKE is needed if you don't search by an exactly value. The "MoviePath" is always the full path a media file, so you have to use LIKE to list more than one movie. The % is equal to the * in a Windows Explorer search. So if your first path is "\\SERVER\Movies\Blockbusters" and your second one is "\\SERVER\Movies\Blockbusters from India" then my query will list boths.

I don't know the real paths you want to filter, so it's a little bit difficult to say what's the correct query for you.   
sql:
SELECT * FROM movielist WHERE movielist.MoviePath LIKE "\\servername\folder\subfolder1\%"
should work. Notice the additional \ before the %.
Reply


Messages In This Thread
Media List Editor Examples - by DanCooper - 2015-04-27, 22:49
RE: Media List Editor Examples - by Cocotus - 2015-06-11, 00:18
RE: Media List Editor Examples - by geek-baba - 2017-11-19, 14:50
RE: Media List Editor Examples - by komplex - 2017-11-19, 15:10
RE: Media List Editor Examples - by geek-baba - 2017-11-19, 15:45
RE: Media List Editor Examples - by beesmyer - 2015-11-27, 08:38
RE: Media List Editor Examples - by DanCooper - 2015-11-27, 11:55
RE: Media List Editor Examples - by beesmyer - 2015-11-28, 11:55
RE: Media List Editor Examples - by DanCooper - 2015-11-28, 14:32
RE: Media List Editor Examples - by beesmyer - 2015-11-28, 16:31
RE: Media List Editor Examples - by DanCooper - 2015-11-29, 00:17
RE: Media List Editor Examples - by beesmyer - 2015-11-29, 03:13
RE: Media List Editor Examples - by DanCooper - 2015-11-29, 13:50
RE: Media List Editor Examples - by beesmyer - 2015-11-29, 16:49
RE: Media List Editor Examples - by DanCooper - 2016-04-14, 10:09
RE: Media List Editor Examples - by Daydream - 2016-04-24, 03:26
RE: Media List Editor Examples - by DanCooper - 2016-04-24, 16:00
RE: Media List Editor Examples - by Daydream - 2016-04-28, 03:50
RE: Media List Editor Examples - by DanCooper - 2016-04-28, 09:42
RE: Media List Editor Examples - by DanCooper - 2016-04-28, 19:49
RE: Media List Editor Examples - by brunosso - 2016-05-10, 13:08
RE: Media List Editor Examples - by DanCooper - 2016-05-10, 13:18
RE: Media List Editor Examples - by hst12 - 2017-03-31, 12:48
RE: Media List Editor Examples - by PH-SYM - 2017-08-29, 19:35
RE: Media List Editor Examples - by DanCooper - 2017-08-29, 22:07
RE: Media List Editor Examples - by PH-SYM - 2017-08-29, 23:14
RE: Media List Editor Examples - by DanCooper - 2017-08-30, 00:52
RE: Media List Editor Examples - by PH-SYM - 2017-08-30, 12:58
RE: Media List Editor Examples - by DanCooper - 2017-11-09, 10:34
RE: Media List Editor Examples - by DanCooper - 2017-11-09, 10:36
RE: Media List Editor Examples - by DanCooper - 2017-11-09, 15:57
RE: Media List Editor Examples - by DanCooper - 2017-11-10, 17:20
RE: Media List Editor Examples - by Toxic Man - 2017-12-16, 23:22
RE: Media List Editor Examples - by DanCooper - 2017-12-17, 18:49
RE: Media List Editor Examples - by Toxic Man - 2017-12-18, 03:12
RE: Media List Editor Examples - by DanCooper - 2017-12-18, 10:39
RE: Media List Editor Examples - by kennywayne07 - 2017-12-20, 01:06
RE: Media List Editor Examples - by DanCooper - 2018-01-08, 00:06
RE: Media List Editor Examples - by Anderella - 2018-01-11, 21:55
RE: Media List Editor Examples - by DanCooper - 2018-01-11, 22:32
RE: Media List Editor Examples - by Anderella - 2018-01-11, 21:57
RE: Media List Editor Examples - by Anderella - 2018-01-12, 10:33
RE: Media List Editor Examples - by DanCooper - 2018-03-11, 23:10
RE: Media List Editor Examples - by DanCooper - 2018-03-12, 19:48
RE: Media List Editor Examples - by DanCooper - 2018-03-13, 18:28
RE: Media List Editor Examples - by geek-baba - 2018-03-12, 12:54
RE: Media List Editor Examples - by DanCooper - 2018-03-12, 13:16
RE: Media List Editor Examples - by DanCooper - 2018-03-14, 16:07
RE: Media List Editor Examples - by DanCooper - 2018-03-15, 10:40
RE: Media List Editor Examples - by DanCooper - 2018-06-07, 16:15
RE: Media List Editor Examples - by badbob001 - 2018-06-18, 23:35
RE: Media List Editor Examples - by badbob001 - 2018-06-19, 00:57
RE: Media List Editor Examples - by redglory - 2019-07-29, 22:52
RE: Media List Editor Examples - by DanCooper - 2019-07-30, 00:18
RE: Media List Editor Examples - by redglory - 2019-07-30, 10:07
RE: Media List Editor Examples - by DanCooper - 2019-07-30, 11:33
RE: Media List Editor Examples - by redglory - 2019-07-30, 14:12
RE: Media List Editor Examples - by geek-baba - 2020-04-07, 21:02
RE: Media List Editor Examples - by DanCooper - 2020-04-07, 22:48
RE: Media List Editor Examples - by geek-baba - 2020-04-08, 01:18
RE: Media List Editor Examples - by DanCooper - 2020-04-08, 10:03
RE: Media List Editor Examples - by DanCooper - 2020-04-08, 12:24
RE: Media List Editor Examples - by DanCooper - 2020-04-08, 14:13
RE: Media List Editor Examples - by geek-baba - 2020-06-13, 18:27
RE: Media List Editor Examples - by ping182nz - 2020-07-21, 07:52
RE: Media List Editor Examples - by ping182nz - 2020-07-28, 01:56
RE: Media List Editor Examples - by DanCooper - 2020-07-28, 09:21
RE: Media List Editor Examples - by ping182nz - 2020-07-29, 05:15
RE: Media List Editor Examples - by Anderella - 2021-12-18, 12:57
RE: Media List Editor Examples - by DanCooper - 2021-12-18, 17:31
RE: Media List Editor Examples - by DanCooper - 2022-06-23, 23:09
RE: Media List Editor Examples - by DanCooper - 2022-07-21, 16:09
RE: Media List Editor Examples - by DanCooper - 2022-08-25, 21:31
RE: Media List Editor Examples - by DanCooper - 2022-09-11, 20:37
RE: Media List Editor Examples - by DanCooper - 2022-09-12, 22:22
RE: Media List Editor Examples - by drvid - 2023-05-28, 19:25
RE: Media List Editor Examples - by DanCooper - 2023-06-11, 01:24
Logout Mark Read Team Forum Stats Members Help
Media List Editor Examples1