I have a DB table named 'affiliate_wp_coupons' where has 3 cols and they are;
- coupon_id
- affiliate_id
- coupon_code
I have coupon_code which is coming from a variable, not static. Now I wanted to query the associated affilaite_id value based on the coupon_code.
I am trying this code:
$results = $wpdb->get_results( "SELECT * FROM affiliate_wp_coupons WHERE `coupon_code`= 'BS0PDDTTGU'");
This code returns an Object with the matched col.
In the above code coupon_code value is static, how can I put a variable here?