❶ 怎麼向一個資料庫的表中插入數據
使用INSERT INTO語句即可
比如向user表插入一個用戶的用戶名與年齡,可以像下面這樣寫:
insertintouser(username,userage)values("小明",18)