Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の列値を持つ行を取得する必要があります。
これは正しいですか??
SELECT * FROM tourDB WHERE tour_type = insta_deals
これで、「tour_type」の列に insta_deals を持つすべての行を取得したいと考えています。
'値を使用しない場合、 insta_dealsmysql は列名として認識します。したがって、'この値が実際には文字列であることを mysql に指定するために使用する必要があります。
'
insta_deals
SELECT * FROM tourDB WHERE tour_type = 'insta_deals'
SELECT * FROM tourDB WHERE tour_type LIKE 'insta_deals'