奔驰sql
1. 请教个sql语句
select id from [TABLENAME] where [name] like '%奔驰%'
其中[TABLENAME]是数据表名,其他的不用改
不明白的是你是如何确定这个关键字的,就说说你的问题中的“我爱奔驰322”是什么意识?
--------------------
我们都知道你这个“我爱奔驰322”是形象用法,不过我们是想知道,我们的查询必须与“我爱奔驰322”这类的词有关吗?如果有关的法是怎么个有关法?
就是为什么“我爱奔驰322”中的关键词是“奔驰”不是“爱奔”呢?
zyzx1986其实和我的做法和疑问是一样的,麻烦楼主解释一下。
2. SQL日期计算
1,
select dateadd(dd,2-datepart(dw,dateadd(wk,周数-1,年份)),dateadd(wk,周数-1,周数)),dateadd(dd,8-datepart(dw,dateadd(wk,周数-1,周数)),dateadd(wk,周数-1,周数))
注意:年份的格式为‘****-01-01’,如你这里的2009年则是‘2009-01-01’
2,
declare @i int
declare @datetime datetime
declare @table table(ID int,date datetime)
set @i=1
set @datetime=年份+月份+01(格式如‘2009-06-01’)
while @datetime < 年份+(月份+1)+01(格式如‘2009-07-01’)
begin
if datepart(weekday,@datetime)=2
begin
insert into @table values(@i,@datetime)
set @i=@i+1
end
set @datetime=dateadd(day,1,@datetime)
end
select * from @table where ID=周数
我这样写应该很容易看,有什么问题再问我,要求加分……
3. 如何用sql语句插入空白列
1、select case when ISNUMERIC(字段)=1 then 汉字 else 字段 end from 表名;
2、select 字段,NULL as 空白列 from 表名;
---
以上,希望对你有所帮助。
4. SQL一个字段多个值的查询
SQL一个字段多个值的查询
select * from otim where sheetid in(1,2,3)