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;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-04
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-19
  • 2021-04-23
相关资源
相似解决方案