ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
易语言面向百度编程 教材: 中文编程:学习进阶 基本组件 录像2-基本组件1 录像3-基本组件2 常用命令 录像4-流程控制1 录像5-流程控制2 录像6-数组 录像7-文本操作 录像8-字节集操作 录像9-其它常用命令 录像10-支持库 录像11-超级列表框 录像12-易语言扩展功能 录像13-mysql环境配置 录像14-MYSQL管理工具介绍 录像15-SQL语句的用法1 CREATE TABLE `students` ( `id` int(11) NOT NULL AUTO_INCREMENT, `stuxh` varchar(10) DEFAULT NULL, `stuname` varchar(255) DEFAULT NULL, `stuyw` varchar(255) DEFAULT NULL, `stubj` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ); 字段查询 SELECT * FROM `students2` LIMIT 0, 1000 SELECT * FROM `students` ORDER BY `stuxh` LIMIT 0, 1000 SELECT id,stuxh,stuname FROM `students2` LIMIT 0, 1000 SELECT * FROM `students2` where stuxh='2018002' 插入字段 INSERT INTO `students` (`stuxh`, `stuname`, `stuyw`, `stubj`) VALUES ('2018005', '灰太狼', '99', '3-4') INSERT INTO students2 (stuxh, stuname, stuyw, stubj) VALUES ('2018006', '李连杰', '99', '3-4') 更新字段 UPDATE `students` SET `stuyw`='97' WHERE (`id`='5') UPDATE students2 SET `stuyw`='100' WHERE id=4 UPDATE students2 SET `stuyw`='90' WHERE stuxh='2018005' 删除字段 DELETE FROM `students` WHERE (`id`='5') DELETE FROM students2 WHERE id=5 修改成唯一约束 ALTER TABLE `students2` DROP INDEX `stuxh`, ADD INDEX `stuxh` (`stuxh`) ; 录像16- SQL语句的用法2 录像17-机器人与主程序通信方法