sql语言是不区分大小写的,执行单句不需要分号,多句时需要。
可以分为数据操作语言(select,update,delete,insert into)和数据定义语言(creat,alter,drop)。
select:
select A,B from table
select distinct A from table --返回不同的值
select A from table where B=C -- <>:不等于,>=:大于等于,between:某个范围,like:某种模式,如果C是文本,就要用单引号,如果是数值,不用引号。 and,or:连接多个条件
select A from table order by A desc --降序 B asc --升序
|
insert into:
INSERT INTO table_name (列1, 列2,...) VALUES (值1, 值2,....)
|
update:
UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值
|
delete:
DELETE FROM 表名称 WHERE 列名称 = 值
|
阅读(414) | 评论(0) | 转发(0) |