Ad
Code
Diff
  • -- Code Here
    select *
    from transactions
    where customer is not NULL;
    • --- Code Here
    • -- Code Here
    • select *
    • from transactions
    • where customer is not NULL;
Code
Diff
  • -- Code here
    select *
    from transactions
    where customer is NULL;
    • --- Code Here
    • -- Code here
    • select *
    • from transactions
    • where customer is NULL;
Code
Diff
  • -- Code Here
    select * 
    from transactions
    where customer like 'S%r'
    • --- Code Here
    • -- Code Here
    • select *
    • from transactions
    • where customer like 'S%r'
Code
Diff
  • -- Code Here
    select *
    from transactions
    where store not in ('BIE Store Jakarta', 'BIE Store Bandung');
    • --- Code Here
    • -- Code Here
    • select *
    • from transactions
    • where store not in ('BIE Store Jakarta', 'BIE Store Bandung');
Code
Diff
  • -- Code Here
    select * 
    from transactions
    where store in ('BIE Store Bandung', 'BIE Store Palembang', 'BIE Store Malang');
    • --- Code Here
    • -- Code Here
    • select *
    • from transactions
    • where store in ('BIE Store Bandung', 'BIE Store Palembang', 'BIE Store Malang');