mysql
tang1jun
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mysql查询表 列信息
select COLUMN_NAME,column_comment from information_schema.COLUMNS where table_name = 'db_car_apply'-- 查询表字段select COLUMN_NAME from information_schema.COLUMNS where table_name = '表名' and table_schema = '数据库名';原创 2021-05-27 11:55:39 · 1124 阅读 · 0 评论 -
xampp 修改 mysql 密码
mysql用户的相关信息是保存在mysql数据库的user表执行语句,修改密码UPDATE user SET password=PASSWORD('root') WHERE user='root';找到phpMyadmin的配置文件,即phpMyAdmin目录下的config.inc.php如下代码/* Authentication type and info */...原创 2018-08-21 11:00:16 · 1389 阅读 · 0 评论
分享