mysql 常用命令


1、创建数据库
mysql> create database themis_lfyj;

2、创建用户并为之授权
mysql> grant all on themis_lfyj.* to 'themis_lfyj' identified by 'themis_lfyj';

3、dos下导入.sql文件
mysql -uthemis_lfyj -pthemis_lfyj themis_lfyj < d:\themis_lfyj.sql

4、mysql壳下导入.sql文件
mysql> source d:\db.sql;

5、常用函数
(1) md5()
select md5('myname')
可以将字符串"myname"的md5加密结果串输出。感觉不错。

你可能感兴趣的:(mysql)