Structured Query Language (SQL) is a language for querying databases. Questions should include code examples and table structure. This tag refers to the standard language, not for questions about specific vendor extensions, like MySQL or Microsoft SQL Server, so if you think your question relates to ...
0
votes
0answers
9 views
PDO will only return first row of data set
This code displays the first row perfectly but no more.
I have tried fetchAll() , and can get the correct number of rows to display, but only one column is populated per row, and the data values are ...
1
vote
2answers
16 views
which non-clustered index should i have to use composite or single column in sql server?
i have following columns in my database table(Medicines).
ID bigint,
MedicineName nvarchar(50),
BrandName nvarchar(50),
MedicineCode nvarchar(20),
and price,quantity.
i am ...
0
votes
2answers
24 views
Get other fields as well on MIN query
I have a table named soft with the following fields:
pname, title, developin, dcost
Here pname is the name of each programmer.
title is the name of a developed project.
developin is the language ...
0
votes
2answers
12 views
Select between varchar as a date returns null
I have a table attendance_sheet and it has column string_date which is a varchar.
This is inside my table data.
id | string_date | pname
1 | '06/03/2013' | 'sam'
2 | '08/23/2013' | 'sd'
3 | ...
-1
votes
1answer
15 views
Query to monitor the double bookings in the database
I need a query for the following requirement
table name: hms_reservation_mst
coloum name : reservation_no , reserved_by
I want to know the reservation_no's for which a particular ...
0
votes
0answers
37 views
Stuck with WHILE and LOOP inside a MySql procedure
BEGIN
DECLARE x INT;
DECLARE done INT DEFAULT FALSE;
DECLARE myType INT;
DECLARE cur1 CURSOR FOR select max(type) from likes where type < x;// How do we get x here?
DECLARE ...
0
votes
2answers
30 views
Vertical Join in an SQL Statement
I've got the following SQL Statement:
select * from Leaves inner join LeaveDetails on Leaves.LeaveId= LeaveDetails.LeaveId
inner join Employee on Leaves.EmployeeCode = Employee.EmployeeCode
inner ...
0
votes
3answers
29 views
select where date without time
I am using SQLite, now how can I Select a quiery if I have a timestamp coloumn that has this value for example 07:00 06/03/13 but I want only to select where timestamp 06/03/13.
this is my example of ...
0
votes
0answers
16 views
retrieving the total sum of a table item from a qroupby querry in sqlite db
i have three tables
private static final String DTReasonTable = "create table tb_DTReasons(DTReasonId integer primary key autoincrement,DTReason text)";
private static final String ...
0
votes
2answers
24 views
SQL / Add 2 zeros to String
I want to add 2 zero to the right of the next function: UNIX_TIMESTAMP (NOW()),
So instead of: 1369047810, I would get: 136904781000
I try this:
SELECT (UNIX_TIMESTAMP (NOW()) + ...
0
votes
0answers
35 views
Linq to SQL update with ?? operator
I have a method with several optional parameters that then updates the database using a LINQ query. I would like to update the record such that the optional fields are only saved if they were supplied ...
0
votes
2answers
21 views
How to sum set of period times in specific format
If I have result set like that :
Work_hour(hh:mm)
10:24
12:59
06:28
where Work_hour is of type varchar
How to sum those hours and minutes with the same format ?
1
vote
2answers
18 views
How i can create one column in my select output with sequence and seed
i have one select like this
SELECT
TOP (5)
ROW_NUMBER() OVER(ORDER By S.Id) AS RowNumber
,S.SubscribeNumber AS SN
FROM billing.Subscribe AS S
ORDER BY S.Id
that have output Like this
RowNumber ...
-2
votes
0answers
25 views
Dynamically create sql table from table list
I'm trying to create a bunch of tables in a schema base on a table list that pulls its table names from another schema
example
schA table1
schA table2
schA table3
dbo tablelist contains this ...
0
votes
2answers
48 views
only select/count verified and not banned users
Here is the code
SELECT username,count(username) FROM users WHERE status = '1' // $vuser to get the verified user only (it's the main query)
SELECT username FROM banned_users WHERE username = $vuser ...
0
votes
2answers
34 views
find most number of languages used
I have a table called soft having a column name ‘developin’ contains the name of language used to develop the software.
My requirement is that I need to find the name of language used most number of ...
0
votes
2answers
17 views
I need a final tweak to this CASE statement
I have the following piece of code:
SELECT CASE WHEN (ACCT.NMAJORHCODE IN ('7','16')
AND DET_TYPE NOT IN ('ACR', 'ADR', 'CRN'))
OR (DET_TYPE IN ('ADR', 'CRN') AND CR.NMAJORHCODE < 4 AND ...
0
votes
0answers
10 views
What is best tool to compare two different Database ,the first database is Ms Sql and another is DB2
I have two database ,
First Db is Microsoft SqlServer (version 2008 R2) and second database is DB2
i need a tool for comparing schema and tables in both ot them ?
is every body have idea or ...
0
votes
1answer
30 views
Group by function with TOP 1 in SQL
I have a table with columns AppId, Comment, TimeStamp. Table can have multiple entries for same AppId. Now what i am trying to do is to get Top 1 Comment for each AppId Order by TimeStamp Desc.
I ...
0
votes
1answer
12 views
SQL Parameters - where does expansion happens
I'm getting a little confused about using parameters with SQL queries, and seeing some things that I can't immediately explain, so I'm just after some background info at this point.
First, is there a ...
0
votes
1answer
19 views
Deleting 2 rows that have a same Value in a Parameter - SQL
i have a table that contain similar Values in the Column "Name" in different rows, i would like to delete the duplicate ones and keep one , i tried the while loop but it didn't work , any simple ...
1
vote
1answer
20 views
VB.NET Dealing with SQL Nulls and SqlString.Null
I would like to test SQL output parameters for NULL values. What I have realised is that SQLString.NULL is not equal to DBNull.Value. My question is, is there a more general way of checking a ...
0
votes
2answers
14 views
Convert SQL to HQL for NOW()
Please help in converting below sql query to hql
SELECT * FROM INVOICE WHERE INVOICE_DATE > NOW() - INTERVAL 7 DAY
System throwing error for NOW()
0
votes
1answer
14 views
how to add column to a table at a specific position using DBMS_REDEFINITION
can anybody tell me, how one can add column to table at a specific position using DBMS_REDEFINITION package from Oracle?
0
votes
0answers
9 views
SQL Azure connectivity issue after concurrent connections
is there any limit on the number of concurrent connections that can be established on SQL azure database.
this is the situation that i am facing:
i have a website which is hosted on a Windows server ...
1
vote
2answers
58 views
Select within a select slow
I currently use a select within a select to check if data exists in a table:
select
a.id,
a.desc,
a.serial,
a.partno,
a.maintact,
a.lcnalc,
a.datedue,
a.intrem,
...
0
votes
1answer
64 views
How to kill multiple processes
I need some help, Within a program I am creating! I have a simple task manager where i can kill a single process! However, i need it so I can kill multiple processes, been stuck a few days and a ...
0
votes
1answer
16 views
Reading last Row in Excel while importing - SQL Database
i have the following code that imports Excel Data to a table and updates some parameters , however i am unable to read all the rows , only the last row is being read , i want to be able to read all ...
4
votes
3answers
42 views
Why am I allowed to have two indices with the same name?
I have a large .sqlproj project. In one .sql file I have one table definition:
CREATE TABLE [dbo].[TableOne] (
[ColumnName] UNIQUEIDENTIFIER NULL
);
GO
CREATE UNIQUE CLUSTERED INDEX ...
0
votes
0answers
18 views
Database table sync with SSIS and Conditional Split task of SSIS
I have Identical Databases on Two different Servers and Need to write an SSIS package to Synchronize them. Source and destination database has same tables with the exception that Source database has ...
0
votes
3answers
31 views
mysql query repeats results
I have this query. I need to select the rows if logo is empty OR button is empty OR vanitylogo is empty. This seems to be working but, printing multiple rows for same mid. How to fix this ?
SELECT ...
0
votes
0answers
27 views
list rows with the same ID from all tables
I use SQLite in Delphi2010,
I want a list of rows from all db tables with the same ID.
SELECT * FROM "Log-130517-1300" WHERE ID = 2 -- works with any particular table.
SELECT name FROM sqlite_master ...
0
votes
1answer
18 views
Two select statements in stored procedure
I have the following stored procedure:
create procedure Get_CarInfo
@PlateNo nvarchar(10)
as
select Administration.City AS AdCity
from Administration
where Administration.AdministrationNo = (select ...
1
vote
2answers
21 views
Oracle : Which column to update ? Complex query
I have table with 15 columns, 12 columns (January, February, March,...,December), to fill my table i should know the column to update.
because the update qurey depend to the user entry, if he enter 1 ...
0
votes
2answers
49 views
Questions about SQL query
I need to select exam results of students in class 7A, but need to look into another table (student_profile) to identify students in 7A (identify by student_id).
I wonder which of the following method ...
0
votes
0answers
11 views
How to do vesrsioning for database ?? using TFS and how to configure VSS to Sql Server management studio
here i am not able move a bit in the concept of Configuring VSS to Sql servr M Studio and what are the best ways to Database Versioning .....Suggest me
1
vote
1answer
16 views
insert multiple rows in single SQL
I am trying to insert multiple rows with SQL statement.
For that i refered this question.
According to top scored answer in this qestion, i made following query:
INSERT INTO login
...
2
votes
2answers
28 views
How to select data from 30 days?
I have query:
SELECT name
FROM (
SELECT name FROM
Hist_answer
WHERE id_city='34324' AND datetime >= DATE_SUB(CURRENT_DATE, INTERVAL 1 MONTH)
UNION ALL
SELECT name FROM
Hist_internet
WHERE ...
0
votes
1answer
11 views
Sql Recursion via CTE over LINQ SelectMany
Firstly I'm fairly well versed in LINQ queries, but a complete novice at writing direct SQL queries.
I want to be able to do the following:
For any given ItemId, loop through it's child Items until ...
0
votes
1answer
25 views
How to get the difference between two datetimes in hours and minutes
If I have two datetimes like this :
transtime_in, transtime_out
How to get the difference between those datetimes in the following format :
hh:mm
I use
DATEDIFF(hour, transtime_in, ...
1
vote
1answer
12 views
Selecting distinct records not considering one field
I have a table with a composite primary key made of seven fields:
PK COD_LTN
PK COD_CANA
PK COD_FAM_PRO
PK COD_CTG_PRO
PK COD_PRO
PK COD_CFG_PRM_PRO
PK COD_FAM_PRM_PRO
I have for example these two ...
1
vote
2answers
29 views
Fetch data from more than one tables using Group By
I am using three tables in a PostgreSql database as:
Customer(Id, Name, City),
Product(Id, Name, Price),
Orders(Customer_Id, Product_Id, Date)
and I want to execute a query to get from them "the ...
1
vote
2answers
51 views
Join two sql queries into one
I have two mysql queries and would like to combine them into one.
This one basically "merges" two columns into one.
SELECT description
CASE
WHEN checkbox2 = '2' THEN '2'
WHEN checkbox2 = ...
1
vote
2answers
32 views
Handle stored procedure output
I have this procedure:
ALTER PROCEDURE [xyz].[stored_proc]
@input1 as int,
@input2 as nvarchar(255)
AS
BEGIN
SET NOCOUNT ON;
UPDATE ...
SET input1=@input1
WHERE ...
-1
votes
1answer
16 views
How to get rows from one table with addiditonal rows that are equals to them but has dependency with the second table?
I have three tables
Table A
- id;
- field1;
- field2;
Table B
- id;
- field1;
- field3;
Table C
- id;
- field1;
- field4;
Table A has one-to-one releationship with Table B and ...
0
votes
0answers
16 views
Drill-Down DevExpress Using Stored Procedure
Well, I am trying to create a drill-down DevExpress report with a stored procedure in SQL Server but the drilled data are same in every row, do anybody have the solution? thanks.
Here is the stored ...
-3
votes
3answers
34 views
Multiple Query in PHP MySQL
Is this oj?
$string1= "INSERT sells....;";
$string1 .= "UPDATE Customers....;";
mysql_query($string1) or die(mysql_error());
how I can execute in PHP. Please help
0
votes
1answer
28 views
Fastest Data Transferring Over A Linked Server
When it comes to transferring data between linked servers, there have been several method I have used in my work to date.
I'm wondering if there is an accepted fastest/most efficient way that a task ...
0
votes
2answers
21 views
Reduce subquery to join
I'm so sorry for the question it has been asked many times on the net but I don't understand how to optimize my subquery:
SELECT *
FROM rp_clientAffectationHistory as T1
WHERE ...
0
votes
1answer
17 views
Receiving error with decimal data type mySQL
CREATE TABLE WLPortfolio
(
symbolID MEDIUMINT NOT NULL AUTO_INCREMENT,
symbol_userID MEDIUMINT NOT NULL,
symbol default NULL,
holding default NULL,
amount decimal(12,2) default ...



