私は2つのテーブルtbl_expense
とを持っていtbl_miscellaneous_category
ます。tbl_expense
私にはいくつかのフィールドがあります。主にid
とcategory
。 tbl_miscellaneous_category id and name
名前はに他なりませcategory
んtbl_expense table
。私はこのようなo/pが必要です:id name
SELECT te.id,te.category
FROM tbl_expense te
inner join tbl_miscellaneous_category tmc
on te.category=tmc.id
WHERE te.id= '1'