惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
MyScale Blog
MyScale Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
MongoDB | Blog
MongoDB | Blog
I
InfoQ
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Help Net Security

博客园 - kejian of 20

ResultSet详解 关于e.printStackTrace() Java设计模式之适配器模式 MSSQL 2005转到MSSQL 2000的步骤 - kejian of 20 jsp的防sql注入通用程序 - kejian of 20 IIS 一机多站 JavaBean 简单介绍 java.lang.NoClassDefFoundError 关于在Eclipse中导入现有项目 jsp-sql server 2005 关于在ASP中使用在线编辑器——eWebEditor asp连接sqlserver JSP页面传递(乱码) jsp配置记录(连接MYSQL) java连接MYSQL 服务器端XSLT 从VCD中提取伴奏 不能用 '..' 表示父目录解决方法 耳机参数
mysql简单命令
kejian of 20 · 2007-06-26 · via 博客园 - kejian of 20

1、安装:mysql的安装包分为安装版与绿色解压版。绿色解压版不用安装,直接解压即可,需要在Dos命令行下使用。默认用户为root,密码为空。

2、启动服务:D:\mysql\bin\mysqld --console

3、客户端登录:D:\mysql\bin\mysql -u root

4、创建数据库:mysql>create database testDB;

5、切换数据库:mysql>use testDB;

6、创建新用户:mysql>create user test;

7、安装windows服务:D:\mysql\bin\mysqld --install

8、删除windows服务:D:\mysql\bin\mysqld --remove

9、停止服务:D:\mysql\bin\mysqladmin -u root shutdown