标签:SQL

查询发布人每天文章发布量mysql

mysql有这么一个表 t_article 文章表 id integer  id  文章id article varchar(100) 文章名称 op_user varchar(50) 操作用户 create_time datetime 文章发布时间 id article op_user create_time 1    a    zhangsan 201……

把一列的数据根据条件分成两列,这个语句应该怎么写

工作中碰到这样一个问题, 有表A time      step  parentid 11:23       1         5 11.33       2         5 12:23       1         7 12:33       2         7 数据结构如上,一个子表,分步骤记录了时间,现在要得到以下结果 times     ……

求一sql语句!~~急,求高手帮忙

DROP TABLE IF EXISTS `rr_notification_info`; CREATE TABLE `rr_notification_info` (   `id` bigint(20) NOT NULL,   `member_id` int(10) DEFAULT NULL,   `message` varchar(300) DEFAUL……

Navicat报错 Cannot add foreign key constraint

create table department ( dept_name  varchar(20), building varchar(15), budget   numeric(12,2) check (budget > 0), primary key (dept_name)); create table course ( course_id  ……

多条链接查询sql的优化 union all 语句 如何优化提高性能

select * from(  select (select dep_name from department where dep_id= o.dep_id) depName,  out_remark ,sum(out_total_amount) total,out_date   From out_warehouse o where       dep……

vs2013 创建本地Sql数据库 error 50 无法创建自动实例

用VS2013新建了一个基于服务的数据库,本地Sql数据库,出现这种提示:在与Sql Server 建立连接时出现与网络相关的或特定于实例的错误。未找到或无法访问服务器。error 50 无法创建自动实例 以前用vs2010编写的程序加上sql2008是能够使用的而且也已经安装了sql2012 express,请问这是怎么回事? 还有为什么我用 vs20……

这样的sql 语句怎么写?

订单号  会员ID 交易金额 交易时间 1 A 12.0 1440483785692 2 A 11.0 1410483785692 3 A 11.0 1420483785692 4 B 22.0 1440483785692 5 B 32.0 1430483785392 6 B 12.0 1420483785692 7 ……