网络技术

sql语句

时间:2023-03-03 00:53:16 网络技术 我要投稿
  • 相关推荐

关于sql语句大全

  在SQL Server数据库中,我们在写查询语句时,一定要遵循一定的原则才能能够使SQL语句执行起来更加的高效率,sql语句高效性。本文我们主要就总结了高性能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

【sql语句】相关文章:

php执行sql语句的写法03-30

php防止SQL注入的方法分享03-30

discuz的php防止sql注入函数11-16

了解常见的php的sql注入式攻击03-31

php防止SQL注入攻击与XSS攻击方法11-16

关于php中sql注入与XSS攻击的相关介绍03-31

Php中用PDO查询Mysql来避免SQL注入风险的方法11-18

C程序的语句11-29

经典英语句子大全11-30

C语言if语句的使用03-30