码迷,mamicode.com
首页 > 数据库 > 详细

mysql基础入门

时间:2014-12-03 01:37:47      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:des   style   io   ar   color   使用   sp   for   strong   

基本命令:(sql分号结束,切记、切记)

   登录mysql:mysql -h ip  -u用户名 -p   或者  mysql  -u用户名  -p密码  

   查看数据库: show  databases;  //很多数据库,故databases

    (其中 information_schema/mysql/perfornance_schema数据不能修改,系统自带)

    选中一个数据库:use 库名字;

    查看表:show  tables;    //很多表,故tables 

   删除库:drop  database  库名;

  创建表:create table class(stu int, name varchar(20) , age int, area varchar(20));

  删除表:drop  table 表名;(注意:表名可以改,但是库名不能改)

  重命名表:rename table oldname to newname;

  查看表结构:desc  表名;

    语句输入错误,输入"\c",即可结束执行该语句;  

(对表的4基本操作)增、删、查、改:

  插入:(增)

    insert into  表名 (id,  title, name,  content) values (1, ‘hello‘, ‘ggg‘,  ‘kkhely‘), (2, ‘hhoooo‘, ‘ffff‘,  ‘ggge‘);

  更新:(改)

    update 表明 set id=2, content =‘gglkjjk‘  where name =‘ggg‘;  (后面设置条件)

   查找:(查)

      select * from 表名; 

    select  id, title  from  表名 where id>2;

  删除: (删)

    delete  from  表名 where name=‘ggg‘ ;(设置新手模式,即没有where就不运行该语句)

 

  注意点:

  解决字符集问题:

    默认建表一般用utf8, 而windows的cmd中是GBK字符集;因此需要声明字符集;

    如下:

      set  name  gbk;

 

课题:

C++使用哈希表实现英语单词查找系统

 

mysql基础入门

标签:des   style   io   ar   color   使用   sp   for   strong   

原文地址:http://www.cnblogs.com/chris-cp/p/4138992.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!