INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country) VALUES (?,?,?,?,?,?);
INSERT INTO 表名(字段名1,字段名2...) values(?,?,?,) ?是占位符
SELECT ID,name FROM customers
SELECT 字段名1,字段名2 from 表名
delete from customers where CustomerID= ?; //删除一行
delect form 表名 where 条件
update Customers set CustomerName=? where customerID=? //修改某一行
update 表名 set 字段1,字段条件