一个脚印一朵云
文章平均质量分 75
vrobey
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MySQL通过python获取数据列表
也许你已经尝试了在python中通过 cur.execute(“select * from student”) 来查询数据表中的数据,但它并没有把表中的数据打印出来,有些失望。来看看这条语句获得的是什么 aa=cur.execute(“select * from student”) print aa转载 2017-09-25 16:34:37 · 1509 阅读 · 0 评论 -
MySql 查询数据库中所有表名
查询数据库中所有表名 select table_name from information_schema.tables where table_schema='csdb' and table_type='base table'; 查询指定数据库中指定表的所有字段名column_name select column_name from information_schema.column转载 2017-09-25 16:36:25 · 315 阅读 · 0 评论
分享