Useful SQL Statements (cont.)
Select card_number, exp_date, lname, fname, limit from credit_card_table; (represents presentation of some of that “valuable data” eluded to in beginning of presentation)
Select * from criminal_record where lname = ‘BORDEN’ and fname like ‘LIZ%’; (you should get the general idea here)