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
1answer
20 views
MS Access Join Query
I'm trying to combine columns of two queries as follows:
Query1: Query2:
------------- -------------
Col1 Col2 ColA ColB
------------- ...
7
votes
5answers
7k views
Mysql strip time component from datetime
I need to do a date comparison in Mysql without taking into account the time component i.e. i need to convert '2008-11-05 14:30:00' to '2008-11-05'
Currently i am doing this:
SELECT ...
0
votes
0answers
5 views
LIKE operator MySQL doesn't work
I tried to make search using LIKE operator:
SELECT author_id, header, text FROM blog_u.posts WHERE text LIKE '%Samsung%';
It works with latin symbols but doesn't work with russian
SELECT ...
1
vote
2answers
22 views
Selecting Loan Id for Mixed Scenarios in MS Access
Here is a sample of my Loan table:
Loanno Balance amount LoanID
1001045 308731.770000 1
1001045 2007700.740000 2
1001045 3087318905.770 3
1001045 308731.770000 4
1001046 306589.67 1
...
1
vote
1answer
105 views
how to create table with formulas to calculate data in second table?
I have a ProductTable with 1000 products. For example below is just 7 products. The data for products 1-5 is imported to the table from sources by script. I'll use this data to calculate data for ...
0
votes
1answer
24 views
Confused selecting Info From Two DB
i have two database AgencyDB(primary DB) and AgencyBackupDB(Deleted Info from AgencyDB by user) and i have this two table in both DB(but there is no relationship in AgencyBackupDB between Tables).this ...
0
votes
2answers
16 views
Get previous / next record in sqlite
Currently my query looks like this:
SELECT name FROM items
WHERE something = "foo"
AND name > (SELECT name FROM items WHERE name = ?)
GROUP BY name
ORDER BY name ASC
LIMIT 1
(found it here)
...
-1
votes
1answer
21 views
Is it necessary to Use # for creating temp table in sql server?
is it necessary to use # before creating a temporary table in sql server ?
example:
SELECT column1, column2, someInt, someVarChar
INTO ItemBack1
FROM table2
WHERE table2.ID = 7
for ItemBack1 ...
0
votes
4answers
44 views
How to aggregate sum across three tables?
I have four tables like this
Table 1: MsPatient
PatientID PatientName
PA001 | Danny andrean
PA002 | John Travolta
PA003 | Danny Lee
Table 2: TransactionHeader
TransactionID PatientID ...
0
votes
2answers
61 views
How can I fix this sql query?
While executing below query facing "Lost connection to MySQL server during query" error.
how can I fix it?
SELECT *
FROM firmalar,
musterisahipleri,
notlar
WHERE firmalar.firmaID NOT IN (
...
0
votes
0answers
6 views
Draw Line Chart using fusion table as data source
I have a table that has columns as date, timestamp, colC where date represents a date portion of a datetime (ie. "01-01-1970") and colC is a column which doesn't play any role here.
I'd like to plot ...
0
votes
2answers
58 views
NOT IN sql taking too long
I am trying to fetch results from my db, i have following query for it:
SELECT dubaifirstuser.mobile, dubaifirstuser.email, CONCAT( user.fname, '', user.lname ) AS Name, bank_master.bank_name, ...
0
votes
4answers
37 views
How to get all rows from a table inserted in a particular date.
I am trying to write a query that gets all the rows of a table for a particular date.
SELECT * FROM MY_TABLE WHERE COLUMN_CONTAINING_DATE='2013-05-07'
However that does not work, because in the ...
0
votes
1answer
19 views
convert rows in colums in sql server 2005
I’ve been looking for a way to show one rows in multiple colums, one cell. The content of it separated by comma’s.
For example, in stead of:
ProjectID Label
———— ——–
1200 ...
0
votes
4answers
23 views
How to select the item names for multiple instances of item id in another table
The Menu table has the following attributes:
MEAL_ID
MEAL_NAME
MEAL_TYPE
ITEM1_ID
ITEM2_ID
ITEM3_ID
ITEM4_ID
ITEM5_ID
COST
ACTIVE_INDICATOR
The item table had the following attributes:
ITEM_ID
...
0
votes
2answers
30 views
Mysql rank rows and columns from max to min and show the rank in php code ?
I want to make a code that does the some things.
I have got a table with columns and rows and i need to take from the table all max from the table and rank them from high to low.
For example :
...
-3
votes
2answers
28 views
SQL recursive function to get all parents of an item
ID parent_id name
---------------------
1 2 first
2 4 second
3 3 third
4 5 fourth
5 - fifth
Parents ...
-2
votes
0answers
23 views
HOW TO SHOW MYSQL TABLE GROUP BY ID OR ETC
I have The Following Table
No Date Order No SO No Sales (Total)
1 25-May-2013 7 7 Junaedi 30.000.000
2 24-May-2013 6 ...
1
vote
3answers
47 views
Joining tables if the reference exists
I got a (postgresql) database with 4 tables:
Table A
---------------------------
| ID | B_ID | C_ID | D_ID |
---------------------------
| 1 | 1 | NULL | NULL |
---------------------------
| 2 ...
9
votes
4answers
362 views
Sql query containing 2 databases
In C# I want to execute a query that use 2 different databases (One is Access for local, and other is distant and is MySQL)
I'm able to do it in VBA Access, but how I can make the same thing in C# ??
...
0
votes
2answers
23 views
Multiple LIKE statement using AND in Sqlite.
I want to select recipe_id for recipes that have my both ingredient but I cant use AND like this(I mean it returns null for all columns) :
SELECT
vsearch.ingredient_id,
vsearch.ingredtypes_id,
...
1
vote
1answer
41 views
Mysql query grouping by two columns for max date takes too long
I have table that looks like this:
l_p l_a l_timestamp l_n l_act l_name
123 321 2011-1-1T01:00:00Z B q das
21 23 2012-1-1T01:00:00Z C q sd
123 ...
0
votes
1answer
17 views
Complex SQL converted to active record
I have been puzzling over the following query, and how it could be done using active record.
select * from links where id in
(select id from
(select votable_id as id, count(votable_id) ...
0
votes
3answers
40 views
How to using Left Outer Join or Right Outer Join in Oracle 11g
I have a query using "=" in where clause, but it is long time to execute when many datas. How to use the Left Outer Join or Right Outer Join or something like that to increase performance
This is ...
-1
votes
1answer
19 views
MySql - Trigger not work - Abort insert
I had write this trigger but it not work, i recive this error:
11:24:11 CREATE TRIGGER check_venduti AFTER INSERT ON venduti FOR
EACH ROW BEGIN SELECT count(*) AS num_rows FROM ...
0
votes
2answers
10k views
How do I create Insert Update trigger on SQL Server 2008
Hi I have 2 tables name say EmpOne and NotificationEmp1 both table having same structure with same column name, I want to insert update record in NotificationEmp1 table using trigger when I insert ...
4
votes
3answers
29 views
“Friend” relationships (2 tables)
I have two tables like this
Users table
id | name
-------------
1 | s1
2 | s2
3 | s3
4 | s4
5 | s5
6 | s6
friends table
friendID | user_a | user_b
...
2
votes
2answers
21 views
Does SQL Server creates Non clustered index by default
Ya, it is a duplicate of this. But I just needs a clarification on this article by Pinal Dave, which says the following:
Scenario 4: Primary Key defaults to Clustered Index with other index
...
2
votes
1answer
22 views
Disable Table Designer in VS2012
I have recently upgraded my database projects to VS2012 and am now faced with the abomination of the table designer (I'm sure there are people that love it, but I am a Sql developer and find coding ...
3
votes
4answers
390 views
show one column in multiple rows
I’ve been looking for a way to show one column in multiple rows, one cell. The content of it separated by comma’s.
For example, in stead of:
ProjectID Label
———— ...
0
votes
3answers
50 views
SQL Server NULLIF does not work as expected?
I have the following SQL code
Declare
@var nvarchar(5)
begin
Set @var = ''
Select 1 where @var = nullif(@var, '');
End
This does not output any result. Why NullIF is not working?
0
votes
0answers
46 views
Sql query to list several colunms
I have 5 columns in database called PRODUCTS:
id, prodcode, prodname, sector.
The following only lists the data from one column to be chosen:
<select name="prodcode" size="1" class="input" ...
0
votes
2answers
30 views
Calculated Date filed from another Date field that is Randomised
I have to create some random data and so far with the help of this forum I have done 80% of it but I am now stuck (again)
What I need is this I have a column called Requested Date, this date should ...
0
votes
3answers
48 views
Sql join and count rows
I'm trying to join two tables in order to count the data from a row in one of them.
pin.id and repin.from_pin_id are the primaries in two different tables.
I'm trying to count the number of rows a ...
0
votes
0answers
14 views
how to access data from sqlite?
i created a sql statement for titanium. Whenever i run the code i always get a "invalid sql statement".
here is what my code looks like..
$.maleButton.addEventListener('click',function() {
var db = ...
0
votes
2answers
32 views
Insert and Select at the same time in a stored procedure
I have the following stored procedure:
create procedure Insert_Maintenance
(
@PlateNo nvarchar(10),
@MaintenanceType nvarchar(150),
@Name nvarchar(300),
@MaintenanceDate date,
@Qty int,
...
1
vote
3answers
39 views
TSql LIKE search on comma delimited data
Quick question on LIKE searches. If I have a column with a value 'Analyst,Trainer' and another column 'Workflow,Analyst,Tester,Trainer', I want to check if the values in the first column are in the ...
-1
votes
1answer
12 views
SQLite: Importing csv with large number of columns
I am just starting out with SQL and SQLite. I am aware that one can import a csv as a table by (1) creating a table with the necessary columns, (2) designating the delimiter/separator, and (3) ...
0
votes
1answer
19 views
Tabular column value Oracle
I am working on Oracle 10,
I create view from several tables (student Id, lecture Id, details, lecturer name), then I make tabular rows for the view and I make delete button beside each row.
...
1
vote
1answer
45 views
Using MySQL to select data from the last three months
I have a table which contains the following columns:
ID = unique identifier in ascending order
ProductId = Id of a product
rate1 to rate5 = number of times that product has recived a 1 star, 2
star, ...
0
votes
2answers
47 views
Increasing a +1 to the id without changing the content of a column
I have this random table with random contents.
id | name| mission
1 | aaaa | kitr
2 | bbbb | etre
3 | ccccc| qwqw
4 | dddd | qwert
5 | eeee | potentials
6 | ffffffff | toto
What ...
6
votes
3answers
784 views
SQL Efficiency - Query using dateAdd Function twice; or SubQuery and DateAdd Function once; on Date BETWEEN
The expense is using the DateAdd function not only in the SELECT, but also in the WHERE;
Or using the Sub Query which initially returns more data than I need, but then can be filtered without using ...
1
vote
1answer
36 views
Join tables according to a column of the table
I have a table which stores the important dates.
importantDateType column can be either 1 or 2. Given that this is a dropdown in the front-end.
1 => Electorate Division
2 => Village
I have ...
0
votes
1answer
40 views
Sql Query for range
i am developing a website
there are two form searchscreen and serachresultscreen
in first form i select a range from two dropdown list (i.e From value1 to value 2)
range is for diamond clarity like ...
20
votes
10answers
6k views
TSQL: Generate a resultset of incrementing dates
Consider the need to create a resultset of dates. We've got a start and end dates, and we'd like to generate a list of dates in between.
DECLARE @Start datetime
,@End datetime
DECLARE ...
0
votes
3answers
47 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 ...
1
vote
2answers
29 views
How to constrain right hand table in LEFT JOIN?
I have two tables: posts and comment. One post has many comments.
Often I want to retrieve all posts along with any comment they may have. I do this with a left join as shown:
select p.post_id, ...
-2
votes
5answers
43 views
In SQL Server, How to join two table having different column name and different data row?
Suppose I have two tables T1 & T2. I want resulting output table as O1 with help of a SQL query
T1 {SName}
T2 {VName}
O1 {SName, VName}
0
votes
0answers
13 views
Connect Android Device with phpMyadmin
i have a problem with my project, hope you guys help me fix it
I follow this link
to create a conect from android app to mysql with phpmyadmin
If i use Vitural Machine to test with link of file php ...
0
votes
1answer
49 views
Update records and set values
I have a table called Transaction which contains some columns: [TransactionID, Type(credit or debit), Amount, Cashout, CreditPaid, EndTime]
Customers can get lots of credit and these transactions are ...




