我有两个表,其中包含以下tb_Types
和tb_TypePrices
:
tb_Type
-------
id
title
tb_TypePrices
-------------
id
typeId
fromQuantity
ToQuantity
Supplier
Price
这些表有父子关系
现在我想从tb_Types
join中获取数据tb_TypePrices
where typeId=mytypeId
and parameterQuantity
is NOT between fromQuantity
and ToQuantity
。