写插入语句
--给指定列添加数据
INSERT INTO stu(id,username)values(1,"张三")Mysql中关于 错误 1366 - Incorrect string value: #### '\xE5\xBC\xA0\xE4\xB8\x89' for column 'name' at row 1
这里报错是由于创建数据库是字段编码和排序规则未设置为utf-8
- 修改username字段为utf-8排序规则为utf8_unicode_ci后解决
--查询所有数据
SELECT
FROM
stu ;
--查询表结构
DESC stu ;
--给指定列添加数据
--INSERT INTO stu ( id, username )
--VALUES( 1, "张三" ) ;
--给所有列添加数据
--I NSERT INTO stu ( id, username, sex, birthday, score, email, tel, STATUS )
--VALUES(2,"李四",
--'男 ',' 1999-11-11 ',88.88,' lisi @itcast.cn ',' 13838388888 ',1);
--批量添加
INSERT INTO stu
VALUES
( 2, '李四', '男', ' 1999-11-11 ', 88.88, ' lisi @itcast.cn ', ' 13838388888 ', 1 ), ( 2, '李四', '男', ' 1999-11-11 ', 88.88, ' lisi @itcast.cn ', ' 13838388888 ', 1 ), ( 2, '李四', '男', ' 1999-11-11 ', 88.88, ' lisi @itcast.cn ', ' 13838388888 ', 1 );