简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

sql语句大全

来源:易贤网   阅读:1265 次  日期:2015-08-12 15:02:39

温馨提示:易贤网小编为您整理了“sql语句大全”,方便广大网友查阅!

1、创建数据库: create database <数据库名>;

如:create database student;

2、连接到一个已经存在的数据库: use <数据库名>;

如:use student;

3、删除数据库:drop database <数据库名>;

如: drop database student;

4、创建表:create table <表名>(<列名><列的数据类型>[<列的约束>])

如:create table stuinfo(stuid int primary key,stuname varchar(20) not null)

5、删除表: drop table <表名>

如: drop table stuinfo;

6、修改表:alter table

给表添加新列: alter table <表名> add <列名><列的数据类型>;

添加多列,中间用逗号隔开

如:alter table stuinfo add stugender varchar(10)

修改某列的数据类型:alter table <表名> modify <列名><新数据类型>

如:alter table stuinfo modify stugender int

修改列名:alter table <表名> change <老列名><新列名><数据类型>

如:alter table stuinfo change stuname stuaddress varchar(30)

删除列:alter table <表名> drop <列名>

如: alter table stuinfo drop stugender

7、将创建的表的语句反向导出: show create table <表名>

8、查询表的所有内容:select * from <表名>

查询表的部分内容: select <列名列表> from <表名>

9、查询表结构:show columns from <表名>

10、插入单行数据:insert into <表名>(<列名列表>) values(<值列表>)

11、插入多行数据:作用相当于将数据从一个表复制到另一个表

insert into <表名> (列名列表) select

如将stuinfo表中的所有的学生姓名复制到students表中的stuname列中:insert into students(stuname) select stuname from stuinfo

12、删除数据:delete from <表名> where<过滤条件>

如删除stuid为4的人的数据:delete from stuinfo where stuid=4

更多信息请查看IT技术专栏

更多信息请查看数据库
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:mysql存储引擎 innodb与myisam的区别
下一篇:常用统计求和sql语句示例
易贤网手机网站地址:sql语句大全
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!