簡(jiǎn)單的sql 怎么寫?

字號(hào):


    //最簡(jiǎn)單的查詢
    select * from table
    //最簡(jiǎn)單的修改
    update table set name='修改' where id=1
    //最簡(jiǎn)單的刪除
    delete from table where id=1
    //最簡(jiǎn)單的添加
    insert into table (name) values ('ceshi')