MySQL语法
1.进入表:use jdbc;
2.查询表结构:show create table jdbc.user;
3.存放长文本用TEXT类型。
4.存放二进制数据用BLOB。
5.分页
select id,name,money,birthday from user limit 150,10 --从150开始取10条记录
6.修改表的引擎使之支持事务处理。
前入MySQL前端工具-->Tools-->MySQL Administrator-->Startup
Variables-->General Parameters-->Default storage:InnoDB;