sql insert語句怎么寫
選擇:select * from 表名 where 條件
插入:insert into 表名(字段名1,字段名2) values(值1,值2)
刪除:delete from 表名 where 條件
更新:update 表名 set 要更新的字段名=值 where 條件
查找:select * from 表名 where 字段名 like '%值% '----------模糊查詢,如查蘇州,他會查出美蘇州,蘇州好等類似字段 /////////////////////////////////////這些是基本的增,刪,查,改的SQL語句,