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 ...
1
vote
3answers
27 views
Update column from same table column
I have table t1.
table t1
id post_id tags
1 null a
2 1 null
3 1 null
4 null b
I want to update tags where post_id = id.
I tried a query it is giving me zero output.
...
0
votes
2answers
30 views
php + sql hierarchical array result
I'm using php + sql. Now I've a table like this:
user_id word
-------------
u1 w1
u1 w2
u2 w1
u2 w3
And I want to query the database for the data grouped by user.
The ...
2
votes
3answers
45 views
How to calculate average of a column and then include it in a select query in SQL
I have a query where the result like the following
saledate Amount TRVal
20/05/2013 $6250.78 4
21/05/2013 $4562.23 4
22/05/2013 $565.32 6
23/05/2013 $85.36 8
24/05/2013 $56.36 5
...
0
votes
2answers
25 views
String Delimiting in sql server taking Input from a Table
I'm using Delimiting Strings, in sql server
I have a function like
select * from fnSplit('1,22,333,444,,5555,666')
Which splits the string into a table. But now I need to take the input from a ...
0
votes
1answer
10 views
Concatenate Import Expression in SQL
I have the following query:
select @Box=Box,@Code=Code,@Validity=Validity,@Type=[Type]
FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
'Excel 12.0;Database=C:\Barcodes.xlsx;HDR=YES',
...
0
votes
1answer
22 views
Data Converted to BigInt contains Decimal with E Proceeding with Plus sign
i am using "SQL Server 2008 R2". I had a table that had a column Name TimeSpent varchar(250). I am storing some Positive integer values in it . I am using cast(TimeSpent as BigInt) To insert data into ...
1
vote
1answer
23 views
Finding similar pairs of data using SQL
I have written the following Query
Sample Query
USE SampleDB
SELECT Sec.SecurityID, Port.PortfolioCode, Sec.SymbolNameSpace, Sec.Symbol,
PT.TradeAmount, PT.tradedate, PT.settledate, ...
0
votes
1answer
21 views
Rounding up/down to the nearest 5 minutes where hh:mm:ss value is in varchar form
I have a database which one column has a hr:min:sec value like "14:04:33" as varchar (50). I want to round up/down to the nearest 5 min: 14:05:00 and 14:00:00 respectively and both of them needs to be ...
0
votes
3answers
27 views
i want to run a query to get Hierarchy of catagory_name
if my database look like this:-
| CATAGORY_ID | CATAGORY_NAME | PARENT_ID |
-------------------------------------------
| 1 | x | 0 |
| 2 | y | ...
0
votes
2answers
30 views
how to compare two table in same database in mysql?
I new to MYSQL query. I have two different tables in same database. Each tables are 3 column only. I want compare to second table from first table.
table 1:
path -> ...
-1
votes
2answers
101 views
SQL “IN” Operator
I have a doubt with the select statement query with in operator. That is, if I need to get the multiple po values with according to their due nos. If I do this,
select * from table1 where pono ...
0
votes
2answers
53 views
C# multiple SQL server selection [closed]
I want to connect to a SQL server and select data from multiple tables using the SQL statements in the image below. SQL connection information is stored in the table. Finally, I want to show all the ...
0
votes
1answer
16 views
Propagating changes to a database schema in Azure back to Visual Studio?
I created a database using the Azure portal. I then downloaded the starter project Azure created for me and opened it in Visual Studio. I set the login settings, chose to register it as a Data-tier ...
-1
votes
1answer
56 views
Mysql asks for a default value for an auto incremented primary key field
I am facing a strange problem . I'm using mysqli extension from php and am calling a stored function in mysql , which inserts some values in a table , i leave the user_id field vacant since it is ...
0
votes
0answers
14 views
Which component is part of Teradata's open architecture?
Which component is part of Teradata's open architecture? And WHY ?
A. PE
B. Operating System
C. NODE
D. BYNET
0
votes
0answers
24 views
I can't import SQL to database in Rails
To be organized I want to have a file db/seeds/countries.rb with:
ActiveRecord::Base.connection.execute(IO.read("db/sql/countries_iso3166.sql"))
And this file db/sql/countries_iso3166.sql has a SQL ...
1
vote
1answer
58 views
Deleting duplicates using the following code
I thought this should work, but as you can see I'm getting an error. The goal here is to delete duplicates by defining duplicates using two columns. The first list is all the dupes, the second list ...
0
votes
1answer
33 views
how to sum column i in temp table
SELECT @cinema_count = COUNT(c.[key]) FROM cinemas c
SET @count = 0
WHILE @count < @cinema_count
BEGIN
SET @count = @count+1
SET @buffer = 'ALTER TABLE #temptable ADD ...
0
votes
2answers
20 views
sql loader - check for specific field value
I have a field called "FLOATVALUE" in csv/text file. I receive this file from third party, this has below possible values
NULL
{}
Any number
When I insert this value as below
...
0
votes
2answers
30 views
calculate percentage in a stored procedure
okay so I am doing this in code and I'm wondering if it would be better to do it in the database.
SELECT sum(x) as x, sum(y) as y, sum(z) as z from tblRWNPSStat
what i want to do is take the total ...
0
votes
1answer
33 views
Convert Select/Count SQL Command to Linq to Entities
I have a problem with regards on count command using Linq to entities.
What I want to do is to count all the gender with the civilstatus of my employee.
civilstatus 0 - all ; 1 = single ; 2 - married
...
0
votes
2answers
25 views
yii, can not bind parameter to CDbCommand
say, i am going to follow the good practice of avoiding sql injection. so this is not good:
$query="SELECT id,tag FROM tbl_tags WHERE tag LIKE '%".$tag."%' ORDER BY creation_time DESC LIMIT ...
-2
votes
2answers
43 views
Error sql: #1064 - You have an error in your SQL syntax; [closed]
I have an error:
#1064 - You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use
near 'declare int @i set @i = 0 while (@i ...
2
votes
4answers
41 views
SQL Query for retrieving data by combining two queries
I am writing two queries in my sql procedure to retrieve data based on the parameter provided from the user in my asp.net application.
IF @Action = 'ID'
SELECT ...
-1
votes
4answers
57 views
how to check in visual studio 2010 that a table is empty in sql
i want to check if my table(in sql database) is empty so if it is i can put a button in place that allows the user to create their first ... well user so they can use the program.
so how do i check ...
-3
votes
0answers
17 views
How to store data from an sql query in a HDF5 file using pytables in python [closed]
I am looking to store large amounts of numerical data from an sql query into a HDF5 file using python. I have just installed pytables after reading that this was the way to go and I have looked for ...
2
votes
1answer
26 views
String.Format with SQL wildcard causing Dapper query to break
I'm having a bit of an odd problem with Dapper and string formatting. Here's the relevant code:
string end_wildcard = @"
SELECT * FROM users
WHERE (first_name LIKE CONCAT(@search_term, '%') OR ...
0
votes
2answers
24 views
Have a SQL Query that needs to match a number from user input to multiple columns then to column on other table
I have a query that takes a user uploaded csv and matches the number on my sql table. That is listed below. It works fine but i need another query to do something similar.
I now need a query that ...
0
votes
0answers
29 views
mysql create view from working “prepare” statement
I have an SQL query
SELECT CONCAT(
'SELECT `table`.id', GROUP_CONCAT(CONCAT('
, `t_', REPLACE(name, '`', '``'), '`.value
AS `', REPLACE(name, '`', '``'), '`'
) SEPARATOR ''),
' ...
-1
votes
1answer
47 views
Missing Right Parentheses [closed]
I am an end user who uses Business Objects to create reports in free hand SQL. I have been working with some code for the past three hours and keep getting the error msg "Missing Right Parenthese". I ...
-5
votes
0answers
26 views
Why doesn't this query work? ODBC + PHP + “NOT EXISTS” [closed]
I am using an odbc connection, not a sql connection, if that means anything...
Error MSG: Extended SQL - Correlated Subquery feature is not licensed
EDIT: HERE IS THE FULL PHP CODE:
<?php ...
2
votes
2answers
57 views
Create evenly spaced out sequence in SQL
So this should be fairly simple, and I'm sure there's an embarrassingly easily solution I'm missing, but here goes:
I want to create a grid of numbers based on two numeric variables.
More ...
1
vote
2answers
46 views
Is there a workaround to the Oracle Correlated Subquery Nesting Limit?
I have a situation where I'm trying to use a correlated subquery and cannot due to the nesting limit in Oracle. I might be missing another feature that Oracle has, so I thought I'd post this question ...
0
votes
1answer
28 views
trying to get count statistics for simple db table
I want to extract name, # kills, # deaths from a simple database table.
The table has
_from (killer), _to (person who died), and then a wiretap of the event. In the case of pvp, we want to count if ...
0
votes
1answer
33 views
Get 10 random rows that change weekly (featured entries)
I try to get 10 random rows of a table. Many similar questions are out there but I have got an additional condition: I want this list to update weekly, 52 times a year. These 10 items are going to be ...
1
vote
2answers
23 views
Group by date ranges (teradata)
I have data like this:
Date User ID
2012-10-11 a
2012-10-11 b
2012-10-12 c
2012-10-12 d
2012-10-13 e
2012-10-14 b
2012-10-14 e
...
0
votes
4answers
32 views
List the “ID” once if all rows with that ID meet the criteria
I have a table containing orders, and another table containing every line item on all orders:
SALES ITEMSALELINES
Order | Order | Line | QtyOrdered | InStock
1 | ...
1
vote
0answers
11 views
PosgreSQL full text search change dictionary
I have the following statement:
UPDATE customer SET customer_text = to_tsvector(company_name || ' ' || email || ' ' || city);
The company name field in some cases ends with the letter 'Y' which ...
0
votes
1answer
70 views
SQL join query issue?
I have two tables , its individually working good. But i need to execute as single query.
select p.full_descr, pre.id, pre.full_descr
FROM Part_T part,Prereqs_t prereqs,part_t prepart
WHERE p.id = ...
0
votes
2answers
22 views
MySQL select fields containing leading or trailing whitespace
I can use the MySQL TRIM() method to cleanup fields containing leading or trailing whitespace with an UPDATE like so:
UPDATE Foo SET field = TRIM(field);
I would like to actually see the fields ...
0
votes
2answers
24 views
how to get the number of rows in a table that come after a row with a specific id?
how do i get the number of rows in an sql table that come after a row with a specific id with php? I want to get the number of rows that come after the row with an id of 6.
0
votes
2answers
24 views
convert date to spanish in sql
I am running a report with multiple fields in english. I have 2 date fields at the end of the report, one has to be in English and the other in Spanish. The format the date needs to be in is ie ...
0
votes
2answers
31 views
how do you insert to a column name that is similar to an SQL statement? in MySQL
Hi I have a column name called "condition", and I don't know if this is an SQL statement but its in color pink in my phpmyadmin sql. so how do you insert to a column that shares the same name to an ...
0
votes
2answers
35 views
Trying to lock database but not working
I have a table that looks like this
Create Table Items(
[Id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY,
[UniqueCol] [nvarchar](20) NOT NULL,
[Col] int NOT NULL
)
ALTER TABLE Items ADD ...
0
votes
2answers
68 views
Insert on duplicate keys In java
I have this program that I wrote and i'm having a problem. I started this project using "insert" only without "On duplicate keys" and it worked fine. now since i added it, the code goes into an loop ...
0
votes
0answers
16 views
Selecting rows by tag associations with two sets of tag associations
I asked this question earlier, but the design has been revised to include a second factor which I have been unable to work out the answer to.
The table schema looks like this:
Posts:
...
0
votes
1answer
22 views
Am I saving data to my sqllite database correctly?
First I have my sql statement
private static final String DATABASE_CREATE_BADGES =
"create table if not exists badges (id integer primary key autoincrement, "
+ "name VARCHAR, ...
2
votes
0answers
29 views
Delete SQL Server Logins On Replicated Server [migrated]
We have a production database which is replicated on another server at a remote location. The local database users (not logins) are also replicated in this database. However, the sql logins are not ...
-6
votes
2answers
39 views
create different columns from a single column by grouping another column of the same table
i have a table having data like below...
col1 col2 col3 col4
a b c X
d e f ...
0
votes
1answer
33 views
Login & home page issues?
Well i just got my login page to work as it should and of course this has caused something else to go wrong, the issue i am having is that when you go to the home page it should allow you to browse ...

