I am using SQLite,
TABLE A
(
ID
FileNAME
FOLDERID
)
TABLE B
(
FOLDERID
FOLDERPATH
)
I want to write a SQL statement to delete all files in A where its Folder is subfolder of C:\ABC\;
How can I make it in one SQLite statement, and is it the best way to do?
Many thanks!
the following works fine: