Skip to content

Instantly share code, notes, and snippets.

@mcewen87
Created May 21, 2022 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcewen87/135bc7baec78a80536d7ccd38226f354 to your computer and use it in GitHub Desktop.
Save mcewen87/135bc7baec78a80536d7ccd38226f354 to your computer and use it in GitHub Desktop.
create table potential_clients (
id INT,
client_name VARCHAR(50),
previous_customer VARCHAR(50)
);
insert into potential_clients (id, client_name, previous_customer) values (1, 'Easy Rentals', true);
insert into potential_clients (id, client_name, previous_customer) values (2, 'Dallas Automotive', true);
insert into potential_clients (id, client_name, previous_customer) values (3, 'North Texas Paint', false);
insert into potential_clients (id, client_name, previous_customer) values (4, 'Center City Design', true);
insert into potential_clients (id, client_name, previous_customer) values (5, 'Fixit Phones', true);
insert into potential_clients (id, client_name, previous_customer) values (6, 'Western Bowl', false);
insert into potential_clients (id, client_name, previous_customer) values (7, 'True Solutions', false);
insert into potential_clients (id, client_name, previous_customer) values (8, 'Garden Goods', false);
insert into potential_clients (id, client_name, previous_customer) values (9, 'Blue Sky Homes', false);
insert into potential_clients (id, client_name, previous_customer) values (10, 'North Texas Leasing', true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment