我想问一下php查询。我想在那里选择一个带有where子句条件的数据。在第一个查询中,我选择了表(date between $a and $b) and kode=$c and user='Borongan'
中的所有数据,条件为kode
。在那些查询中我得到了我的所有数据。我的问题是我要将数据wjm
中的数据name
更改为数据material
中的kode
。对于我需要一个where子句的更改,并检查我从wjm
获取的数据中的material
值,然后检查条件为select nama from where kode='the code that i get from wjm'
的表wjm table is like this
我为SELECT *
FROM wjm
WHERE (date BETWEEN '$date_awal' and '$date_akhir')
AND kode ='$kode'
AND uses='Borongan'
ORDER by no asc
SELECT nama
FROM material
where kode='the code that i got from wjm'
我想用我从该查询得到的kode再次在其中进行选择。我想做的查询
import os
import glob
import pandas as pd
mask = r'/path/to/*.jpg'
jpgs = [os.path.split(f)[1] for f in glob.glob(mask)]
imagenames = pd.read_csv('file.csv',usecols=['image_name'],squeeze=True)
print(imagenames[imagenames.isin(jpgs)])