ALTERTABLE语句用于在已有的表中添加、修改或删除列。
ALTERTABLE语法
毁禅激 如需在表中添加列,请使用下列语法:
ALTERTABLEtable_name
ADDcolumn_namedatatype
在表"Persons"中添加一个名为"Birthday"的新列。
ALTERTABLEPersons
ADDBirthdaydate
纤袜 新列"Birthday"的类型是date,可以存放日期。数据类型规定列中可以存放的数据的类型。
扩展资料:
基本语句
1、数据记录筛选:
sql="select*from数据表where字段名=字段值orderby字段名[desc]"(按某个字段值降序排列,默认升序ASC)。
sql="select*from数据表where字段名like'%字段值%'orderby字段名[desc]"
sql="selecttop10*from数据表where字段名=字段值orderby字段名[desc]"
sql="select*from数据表where字段名in('值1','值2','值3')"
袭笑 sql="select*from数据表where字段名between值1and值2"
sql="select列名1,列名2from数据表where字段名=字段值groupby列名1,列名2"(groupby用来分组,并且只有出现自groupby中的列名,才允许出现在select语句中)。
2、更新数据记录:
sql="update数据表set字段名=字段值where条件表达式"
sql="update数据表set字段1=值1,字段2=值2......字段n=值nwhere条件表达式"
3、删除数据记录:
sql="deletefrom数据表where条件表达式"
sql="deletefrom数据表"(将数据表所有记录删除)
参考资料来源:百度百科-SQL语句大全
alter table 表名 add 列名 数据类型。
结构化查询语言(Structured Query Language)简称SQL,结构化查询语言是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统sql 语句郑塌就是对数据库进行 *** 作的一种语言。
语句
数据库
CREATE DATABASE database-name
删悄轿除数据
drop database dbname
创建表
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)
删除新表
drop table tabname
增加
Alter table tabname add column col type
设主键
Alter table tabname add primary key(col)
删除主键
Alter table tabname drop primary key(col)
创建索引
create [unique] index idxname on tabname(col….)
删除索引
drop index idxname
创建视图
create view viewname as select statement
删除视图
drop view viewname
sql语启丛肆句
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like '%value1%' (所有包含'value1'这个模式的字符串)
排序:select * from table1 order by field1,field2 [desc]
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
最大:select max(field1) as maxvalue from table1
最小:select min(field1) as minvalue from table1[separator]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)