MySQL快速入门基础教程 怎么使用MySQL

MySQL快速入门基础教程 怎么使用MySQL,第1张

进入 MySQL

#mysql -h192.168.110.xxx -uroot -p -P 3306 (回车后输入密码,即可进入mysql)

1、显示 数据库 列表

mysql>show databases(注:MySQL语句分隔符为“;”)

默认有三个数据库:information_schema、mysql和test。information_schema库为MySQL默认字典库,mysql库很重要它里面有MySQL的系统信息,我们改密码和新增用户,实际上就是用这个库进行 *** 作。

2、显示库中的数据表

mysql>use mysql;(指定mysql库)

mysql>show tables

3、显示数据表的结构:

mysql>describe yourtablename/ mysql>desc yourtablename

4、建库:

mysql>create database yourdbname

5、建表:

mysql>create table yourtablename (columnname colunmtype,...);

6、删库和删表:

mysql>drop database yourdbname

mysql>drop table yourtablename;

7、将表中记录清空:

mysql>delete from yourtablename

8、显示表中的记录:

mysql>select * from yourtablename

9、举个例子:一个建库和建表以及插入数据的实例

mysql>create database world//建立库world

mysql>use world//打开库world

mysql>create table city //建立表city

(IDint(3) not null auto_increment ,

Name char(30) notnull default '',

CountryCode char(3) not null default '',

District char(20) not null default '',

Population integer not null default '0',

Primary key ('ID') )//建表结束

//以下为插入字段

mysql>insert intocity values('','Kabul','AFG','Kabol','1780000')

mysql>insert intocity values('','Beijing','CHN','Beijing','1780001')

出处:mysqlpub.com ,不断完善更新中。

发了五套SQL视频教程 希望有帮助

百度网盘分享链接

http://pan.baidu.com/mbox/homepage#share/type=session

天天快乐~!


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8647613.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-19
下一篇 2023-04-19

发表评论

登录后才能评论

评论列表(0条)

保存