菜单

MSSQL计算当前日期和指定日期的时间差(天数差/小时差/分钟差等)

SQL SERVER数据库需要计算当前日期和文章发布日期的时间差,如天数差(相差多少天)、小时差(相差多少小时)或分钟差(相差多少分钟),可以使用GETDATE()函数获取当前的日期时间,使用DateDiff()函数返回两个日期之间的时间间隔,间隔的数值可以是年、季度、月、一年的日数、日、一周的日数、周、小时、分钟和秒。 语法 DateDiff(interval, date1, date2 [,firstdayofweek[, firstweekofyear]]) 参数: 参数 描述 ...

SQL从第几条数据起调用的select查询语句

SQL SERVER数据库,使用sql语句查询数据表中第几条起的数据,或查询数据表中第n条到第m条之间的数据。 示例: PS:content是要查询的数据表,id是content数据表中的主键字段。 1、查询数据表中第3条起的数据 select * from content where id not in (select top 3 id from content order by id desc) order by id desc 2、查询数据表中第4条至第10条数据 select top 7 * from content whe...

使用count()函数统计sql select查询结果的条数量

使用sql select查询语句,并统计查询结果的记录条数,可以通过count()函数实现,COUNT() 函数会返回匹配指定条件的行数。 1、单个表查询 select count(*) as total from tablename where id > 50 2、数据表联合查询 select count(*) as total from (select * from tablename where id > 50) as tablename2 上面的sql会把统计结果指定给total,调用这个total这个字段就可以显示统计的数量结...

mysql查询数据字段的serialize数组中指定的值

一个数组通过 serialize后存入了mysql中,值是这样的格式: a:2:{i:0;s:9:"baidu";i:1;s:10:"google";} 使用sql语句查找的方法: 用like select * from table_name where domain like '%baidu%'; 或者使用regexp select * from table_name where domain regexp 'baidu';