重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
一、增删改查SQL语法:
忻州网站制作公司哪家好,找成都创新互联!从网页设计、网站建设、微信开发、APP开发、响应式网站建设等网站项目制作,到程序开发,运营维护。成都创新互联2013年至今到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选成都创新互联。
1.查询语句
第一种法方:
select 列名 from table(数据库表名) where(条件)
第二种法方:
select *(表示所有的列) from table(数据库表名) where(条件)
注意:列名与列名之间用逗号分开。
eg:
1.select ProductID,ProductName,Price
from Product
where Price5.0
2.select * from Product where Price5.0
3.如何给列加汉子名称:
格式:“‘列标题’=列名” 或 “'列名'AS 列标题”
eg:
select ProductID=‘产品编号’,ProductName,Price
from Product
where Price5.0
select '产品编号'as ProductID,ProductName,Price
from Product
where Price5.0
where 语句中可以使用逻辑运算符
AND OR NOT
eg:
select ProductID,ProductName,Price
from Product
where Price=5.0 And Price=10.0
2.使用字符串模糊匹配
格式:
expression[not] like 'string'(escape"换码字符")
3.使用查询列表
如果列的取值范围不是一个连续的区间,而是一些离散的值,此时就应使用 SQL Server 提供的另一个关键字 IN 。
语法格式:column_name [not] IN (value1,value2....)
eg:
select SaleID,SaleName,Sex,Birthday,HireDate,Address
form Seller
where SaleID IN('S01','S02',S07)
4.空值的判定
在SQL Server中,通过null。
5.top 和 distinct
语法:select top integer || top interger percent columnName
from tableName
eg:
分别从Customer表中检索出前5个及表中前20%的顾客信息。
select top 5 *
from Customer
select top 20 percent *
from Customer
查询Product 表中价格最高的6种商品。
eg:
select top 6 *
from Product
order by price desc
asc(低—高) desc(高-低)
2.向表中插入数据
语法:insert into tableName(columnName...(要插入的数据的列名)) values(expression(与columnName相对应的值))
注意:再插入数据时,对于允许为空的列可以使用NUll插入空值;对于具有默认值的列,可使用Defaulf插入默认值。
eg:
向Seller 表中插入一行数据,其中Sex字段使用默认值为‘男’,HireDate等字段均去空值。
insert into seller(saleid,saleName,sex,birthday,hireDate,address,telephone,telephone,notes)
values('s11','赵宇飞',default,'1974-07-25',null,null,null,null)
or
insert into seller(saleid,saleName,brithday)
values('s11','赵宇飞','1974-07-25')
3.修改表中的数据
语法:update tableName
set columnName=expression(...)
where search_conditions
eg:
1.将Product表中"啤酒"的价格改为4元
update product
set price=4
where productName='啤酒'(注意:一定要加条件 +“where”)
4.删除数据
语法:delete [from] tableName
where search_conditions
eg:
delete from Seller
where SaleID='s11'(注意:一定要加条件 +“where”,不然就把该表中所有的数据删除了)
查询,select * from table a
删除: delete from table a
增加:alter table table a add No_id char(12) not null UNIQUE
修改:假如有表名table A,字段名A1,原来A1为varchar(3),现在要改为varchar(10),则可以这么写:
alter table A A1 alter column A1 varchar(10)
landy543210 的回答是对的,不过有些问题:
1、很显然LZ在web应用程序上是新人,直接给代码LZ可能不大明白;
2、LZ的是web应用程序,所以MessageBox就不要用了,要的话自己封装一个;
3、使用sql数据库的连接与命令,需添加引用
using System.Data.SqlClient;
4、LZ添加自己的页面控件与处理代码后,然后将
landy543210的代码在修改下以符合自己的业务需求,然后去掉消息框部分,再添加到自己的响应事件中,比如button_click
增加 insert into 表(列名1,列名2,列名3...) values(值1,值2,值3......) 删除 delete from 表 where 列名=条件 修改 update 表 set 列名=值 where 列名=条件 上面几个是完整的形式~
麻烦采纳,谢谢!
select * from A
update A
set [name]='xxx'
where id=1
delete A where id=1
insert into A(id,[name]) values(2,'xxxx')