數據庫標準常用SQL語句
創建表:creat table 表名 (id, int, admin, char(10))
插入紀錄:insert into 表名 (id, admin) values(1, ‘名稱’)
刪除紀錄:delete 表名 where admin=’名稱’
修改紀錄:update 表名 set admin=’名稱’ where id=1
刪除表:drop table 表名
最後更新:2017-01-04 22:34:37
創建表:creat table 表名 (id, int, admin, char(10))
插入紀錄:insert into 表名 (id, admin) values(1, ‘名稱’)
刪除紀錄:delete 表名 where admin=’名稱’
修改紀錄:update 表名 set admin=’名稱’ where id=1
刪除表:drop table 表名
最後更新:2017-01-04 22:34:37