A request to retrieve information from a database or other information system. This tag can be used to refer to SQL queries against a database (SQL-Server, Oracle, MySQL, etc.) or for filtering and manipulation of memory data structures (jQuery, Linq).
4
votes
3answers
50 views
How to select rows with exactly 2 values in a column fast within a table that has 10 million records?
I have a table (TestFI) with the following data for instance
FIID Email
---------
null a@a.com
1 a@a.com
null b@b.com
2 b@b.com
3 c@c.com
4 c@c.com
5 c@c.com
...
6
votes
5answers
10k views
Group mysql query by 15 min intervals
I've got a monitoring system that is collecting data every n seconds (n ~=10 but varies). I'd like to aggregate the collected data by 15 minute intervals. Is there a way to corral the timestamp ...
-3
votes
1answer
31 views
ERROR - ORA-00907: missing right parenthesis
I am new to SQL and i got an error "ERROR - ORA-00907: missing right parenthesis" when i try to run my query, Please do help me out in solving this problem,Please do find the query below
Thanks in ...
0
votes
2answers
67 views
Checking mysql insertion query
I wrote a query but now I'm having doubts.
The first one I have to insert a CD supplied by a particular supplier and produced by a particular producer.
$sql="INSERT INTO cd (supplier_name,
...
0
votes
0answers
6 views
gRaphael : how to show show percentage height?
is there any option in graphael to show percentage value while animate height ?
bar chart increasing when page load. is there any option to increase percentage value.
Thanks in advance
var ...
3
votes
2answers
140 views
MySQL Review System for Website
I need help with a query involving a review system set up with the following two tables.
reviews
-------
id date user_id item_id rating review
1 02-2012 40 456 3 'I like it'
2 ...
0
votes
2answers
19 views
Counting Combinations of rows/columns across one table
I have a query I am having trouble wrapping my head around. What I'm trying to do is come up with a report that will have rows of the major(Accounting, Business, etc) with columns of the type of ...
0
votes
0answers
23 views
SQL Query with duplication and editing
I am new to SQL and have a question that I have not been able to find the answer to yet, probably because I am not sure exactly what to search for. I am using SQL Server 2012. I have a DB that was ...
0
votes
1answer
16 views
Filter by datetime MYSQL formating
I have a Mysql Table that is used for a log file on the that table there is a field called 'log_date' And it stores the date in the following format( %Y-%m-%d %H:%i.%s ).On the DB the dates look like ...
0
votes
3answers
83 views
+50
start navigating to position which is stored in database
I have an application where I am getting the latitude and longitude coordinates.
I want , when to press a button to start navigating to that position .
Now , I am storing latitude and longitude in ...
0
votes
1answer
7 views
Storing a JSON in a data-attribute, the correct way
I have a JSON:
person = {
"name": "john",
"surname": "smith",
"mobile": 123
}
And I want to store it in a data-attribute.
I'm achieving this, this way:
$(".someElement").data("jsonperson", ...
0
votes
1answer
47 views
Wordpress plugin display query in linked file
I am creating a wordpress plugin that will query a db based off of user entered parameters and display the results in a linked html file. I can get it to display the html page, but the results ...
0
votes
0answers
8 views
Google fusion table query breaks with encrypted id
I'm trying to build a responsive food truck finder for my city and I'm having trouble with the Google Fusion table query now that the tableid is an encrypted id rather than a numeric id. The map will ...
0
votes
2answers
28 views
Return Rows That Share A Common Value But Another Column Must Match Multiple Criteria
I have a table that is sorted by id and value in descending order. I want to return all id's that match a group of keys in a specific order. So given (a5, a3) I want to return a and b but not d.
...
0
votes
1answer
14 views
Create Data dictionary of database B
I have 2 database server main database A and other database B.
Database B is same as A but the name of tables and some of the field name are different, but data inside is almost the same.
Database B ...
1
vote
0answers
32 views
Performance on PHP sql queries
I'm barely learning PHP and MYSQL so I don't know much about performance, I've wrote this script to fetch and format content from my DB, it also counts how many result are and separate them in to ...
0
votes
1answer
17 views
selecting only max clause without group by properties in subquery using Nhibernate
I have SQL query like this:
select * from dbo.table1 where Id in
(
select max(id) as id from dbo.table1 group by prop1, prop2, prop3
)
I want to create NHibernate query which is be able to do ...
0
votes
2answers
60 views
Database most common entries query
having had assistance that helped show result, its not showing the results as i need them.
I have this
Table name = power
Column names = power1, power2, power2, power4, power5
$res = ...
0
votes
2answers
516 views
Using Solr to Query HBase
I have a data warehousing problem, needing to query over a large dataset. For the sake of this example lets say a typical state would have 30 million users with activity stats for each. Ideally I ...
0
votes
4answers
24 views
Selecting all data from all columns in a MySQL Database
Say I have the following data in a database DB1:
Table1
id int (50)
attribute varchar(255)
Total Rows : 6550
Table2
id int (50)
attribute varchar(255)
attribute1 varchar(255)
Total Rows : 10550
...
65
votes
9answers
52k views
How can I view live MySQL queries?
I am just wondering if its possible to trace MySQL queries on my linux server as they happen?
For example I'd love to set up some sort of listener, then request a web page and view all of the queries ...
0
votes
0answers
21 views
is it possible to update an existing row in DB, using liquibase?
Tried to find an answer to this question, but couldn't.
So, for example I have this table:
TABLE:
col1 | col2
123 0
124 1
and I want to change col2 value to 1 and this is how I'm ...
0
votes
2answers
63 views
Rails passing more than one parameters
Respected ppl ...
I have a grave design issue since many days ...kindly help out ...
Im coming to this stage from the previous screen after entering the hospital_id which u can c from the URL is ...
-1
votes
2answers
282 views
Find in mongodb subdocument
I use SpringData. I have document with subdocument, it looks like :
{
"name" : "MongoDB",
"type" : "database",
"count" : 1,
"info" : {
x : 203,
...
1
vote
2answers
25 views
Oracle SQL: Using Variables in If Then Statement
I'm having trouble getting an if then statement to work in the following query:
define start_date = '&START_DATE'
define end_date = '&END_DATE'
define co_cd = '&COMPANY_CODE'
...
0
votes
1answer
11 views
It's possible to translate SQL to ElasticSearch?
I need some help. I've few MySQL queries and I need to "translate" it into ElasticSearch syntax.
There are different kind of querys, easy "selects", and others with Join's that I think it's not ...
1
vote
2answers
23 views
SQLite subselect conundrum
Data (illustrative) in SQLite3. Have a few million rows, actually.
a, aardvark
a, anvil
a, apple
a, automaton
b, apple
b, peanut
b, persimmon
b, walnut
Key for my data is actually multiple columns ...
0
votes
1answer
17 views
Retreive the most recent customer data from Sybase DB
I have the following 4 tables in a database. I would like to create a query to get the most recent customer information for each customer (just Mickey Mouse is this example set). I know how to join ...
1
vote
3answers
48 views
Return Only The First Result For A Date
I'm sure I know how to do this but my brain is letting me down right now
Take this example table showing vital signs readings taken from patients at various times of the day:
How do I return just ...
0
votes
2answers
42 views
MySQL Query optimisation for 3 linked tables
I've got a query that often shows up in mysqlslow.log like this...
# Query_time: 1 Lock_time: 0 Rows_sent: 12 Rows_examined: 18040
SELECT url, classname, cr_class, HDBclsslnk.cr_cl
FROM ...
1
vote
2answers
44 views
Find the total number of people who owned cars in MySQL given the schema
hey guys im doing some revision for exam and going through past papers can someone tell me if im on the right track.
Consider the insurance database given below:
person (driver-id, name, ...
2
votes
2answers
1k views
JPA: how do you get/print the JPQL query string behind a (typed) query after parameters have been set?
How do you get/print the JPQL query string behind a (typed) query, that is after parameters have been set? (e.g. for debugging purposes)
A simple toString() doesn't seem to do the trick...
Thanks
0
votes
6answers
55 views
MySQL Inner Join Results
I have a question regarding Inner Joins in MySQl.From my limited understanding of MySQL, The results table produced by an inner join contains only rows that existed in both tables. That is to say for ...
0
votes
2answers
37 views
Insert a customer borrowing a particular CD
So, I have question on whether the SQL statement for inserting a customer borrowing a particular CD is valid or not.
Here's the form I want the customer to fill out.
<form action="proj3.php" ...
0
votes
0answers
19 views
Delete & Edit data from DB (php & modx)
I need to get data from db and links (or buttons) which will do DELETE and EDIT options.
Now i've the following code (modx snippet)
<?php
global $modx;
$output = '';
$result = ...
0
votes
0answers
35 views
SQL UPDATE doesn't work
I have a problem to update my SQL query in the database.
if I test the query in my phpadmin it works but not in mycode. I don't know what the problem is.
Here is my code for SQL query:
$status = ...
-5
votes
2answers
40 views
SQL Query To Create View [closed]
I have some tables on my database, I am using MySQL
See the image below. It is the simple version of my database
How to create view the user detail?
0
votes
3answers
42 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 ...
2
votes
4answers
3k views
Adding data from Excel to Mysql via VBA
UPDATED QUESTION...SEE BELOW
I have an excel sheet which accesses a MySQL db as a backend....
I insert new records into MySql the following way, but I am not sure if this is the best way.
For ...
0
votes
1answer
21 views
ElasticSearch Head: query
I would like to run an ElasticSearch query via the HEAD to extract all brands currently mentioned in the "brand" field of the index?
How can I do this (not using curl, just via the HEAD)?
0
votes
0answers
44 views
T-SQL Query - Return One Result, or return 0 (SQL 2008R2)
I'm quite the novice when it comes to T-SQL, and I can't figure out this query.
I am trying to compare an Item's value to it's ledger Value to check for any anomalies, because occasionally they go ...
-7
votes
5answers
76 views
Difference Between '+' and '*' operation pattern in REGEXP [closed]
I have a table CANDIDATE in my db which is running under MySQL 5.5 and I am trying to get rows from table where xy is contains in firstname, so I can run below two queries
SELECT FIRSTNAME FROM ...
1
vote
2answers
37 views
codeigniter INSERT query is correct and executed but no insert is performed
relevant code:
$sql = "INSERT INTO rel_attivita_corsi(id_attivita,id_corso) VALUES";
foreach($elements as $element) {
$sql .= "('".$element."','1'),";
}
$sql = substr($sql,0,-1);
if ...
0
votes
3answers
23 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
22 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
1answer
32 views
Conversion failed when converting date and/or time from character string
what i am doing is using own function , which is returning string , now i want this colun for ordering , and while using it for ordering it is not ordering properly because its a string , when i tried ...
0
votes
2answers
41 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
1answer
29 views
Sparql Select Query works on Sesame-Workbench but not on Java
I'm trying to create a Sparql-Query to get all messages, that are related to a lecture. I'm new at the whole 'semantic web'-story so be patient if the usage namespace is completely wrong.
The query I ...
0
votes
2answers
56 views
how to php export to pdf one big query?
I have a query with more than 30,000 seats shown correctly in php but I can not export it to pdf. The server does not support the memory size, I increased the maximum memory limit but it continues to ...
0
votes
2answers
51 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 ...





