创建记录:用于向表格中插入新的行。
-- insert:在customers表中增加一行数据
insert into Customers(cust_id ,cust_name,cust_address, cust_city, cust_state,cust_zip)
values( concat(FLOOR(RAND() * 1000000000), ''), 'Toy Land','123 Any Steet','New York', 'NY', '11111');