0
votes
2answers
25 views

How can I combine several 'MAXIMUM' SQLite queries into one query?

tblParents parentId | childId ---------+----- 102 | 1 102 | 3 102 | 4 104 | 3 ... tblPopularity Id | popularityScore ---+----- 1 | 4000 2 | 8000 3 | 3000 4 | 2000 ... ...
1
vote
2answers
18 views

SQLite select multiple foreign keys to one row

I'm trying to set up a high scores board for a game I'm making. On the board, I'm using foreign keys to two other boards, players and weapons. Each score stores the four weapons the player used on ...
0
votes
1answer
15 views

ruby on rails: multiple insertion SQLite3::SQLException: near “,”: syntax error:

I need to do a multiple insertion in the database.It shows me an error all the time Single insertion works perfect: CONN = ActiveRecord::Base.connection irb(main):271:0> ...
-1
votes
1answer
13 views

members and staff login info schema

So I have two tables, members and staff. I need to create a login system which means I need to store usernames and passwords for both members and staff. How should it be implemented? Add columns ...
-2
votes
1answer
44 views

How to write the following sql query for the following? [closed]

I have a table has columns like this docid (documentID) Word (word in the document) count (number of occurrence of word in this document) I need a query which can do the following thing - get ...
2
votes
2answers
36 views

SQL enforce a limit of up-to N items capacity for a database

I have a database where we cache various data, but it shouldn't grow too large, so I need to place a limit to how much items of the same type it holds, after which it should reject new items. So as a ...
-2
votes
3answers
65 views

SELECT Query Best practice

I know that SELECT * is considered bad practice since it can return un-needed information. But what about this: Say i have a table with 4 columns, columns 1-4 Is there any difference (like fast, ...
0
votes
4answers
109 views

SQLite - WHERE Clause & UDFs

Intro I have the following SQLite table with 198,305 geocoded portuguese postal codes: CREATE TABLE "pt_postal" ( "code" text NOT NULL, "geo_latitude" real(9,6) NULL, "geo_longitude" real(9,6) ...
1
vote
1answer
38 views

Working with a sql script in a Flask application

I have created a structure of a basic Flask application and I need guidance with executing a sql script. My folder structure is this: -simpleblog (name of app) flask (contains the virtual ...
0
votes
0answers
39 views

LDAP SQLite communication or link

I have openLDAP server up and running locally, I have a C API that connects to it and also queries it, Also I have a Sqlite Database setup using ODB which is a ORM unlike hibernate in Java. Now, I ...
1
vote
3answers
46 views

Complex SQL Query - nested query

Here is the job_form table... job_num | name | address | ---------+------+---------+ 1 | Tom | Smith | 2 | John | Doe | 3 | Max | Smith | Here is the individual_job ...
-3
votes
2answers
33 views

Can I assign multiple values to the same row/column(cell)? [closed]

how can I store and retrieve in SQLite database multiple values for the same row of the same column? eg; I have a song column and a album column, where I put in all the albums that the song comes on: ...
0
votes
1answer
36 views

Can't get WHERE NOT EXISTS to work

I have two tables number & allocation. allocation has the number primary column as a foreign key. I have a view that gives me all the numbers that exist in the allocation table. I am however ...
0
votes
1answer
32 views

Date comparison Sqlite Android

How do I make a comparison between dates using SQlite, I tried this more failed. help: D My Query: SELECT latitude, longitude, grupo_crime_id_grupo_crime, ...
0
votes
0answers
17 views

Custom collation to not differentiate between a solidus and backslash

I want to make a custom collation/constraint for a column in my database table, which will also have a unique constraint, such that it doesn't differentiate between between a solidus / and a backslash ...
0
votes
2answers
46 views

Add file to blob fileld in sqlite db

How can I add image file, for example, with name '001.png' to sqlite3 database using its command prompt? sqlite3> INSERT INTO test (id, name, blob_field) VALUES (NULL, 'Bob', ?????);
0
votes
1answer
12 views

Exporting table from sqlite3

guys! Weeks ago I exported some tables from sqlite3 database via commands in the prompt. The tables were exported in files and there were the actual sql code of creating the tables and inserting data ...
1
vote
1answer
26 views

SQL Join: Tables of the same kind

I'm trying to make a SELECT query that gets the titles of paintings and sculptures and the corresponding artistID. Here is the schema: Paintings(paintingID, title, painterID) p ...
1
vote
3answers
92 views

Joining tables depending on value of cell in another table

I have a database with a few tables of which I am trying to get some data from. but due to the layout (which I can't do anything about), I can't seem to get a normal JOIN to work. I got three tables: ...
0
votes
1answer
47 views

SQLite Query - Need to get multiple values from multiple keys

I have a database as follows. security_id ticker company_name ---------------------------------------------- 100019 PANL UNIVERSAL DISPLAY CORP 10001 NAFC NASH FINCH CO ...
0
votes
1answer
33 views

Updating unique instance of a group of rows

I have a table with a UID field, an "in study" field (which will take either 0 or 1), and a text field. There are many duplicates in the text field. So far I have figured out a way to select only the ...
0
votes
0answers
47 views

Sqlite Fetch Data from Multiple Tables using Joins

I have properly normalized db and i am facing lots of problems in fetching datas. My Tables, Tab1 Tab2 ==== ==== ID ID Name Rank Age Pos Col1 Col2 Now I am ...
0
votes
1answer
39 views

node-sqlite3 Serialization fails : SQLITE_CONSTRAINT: foreign key constraint failed

In Express.js I am trying to do the following using the serialization of two queries where the second one depends on the first one: I am trying to get an entryID using the first query I use that ...
0
votes
1answer
32 views

SQLite Filesize is still not change after drop table [duplicate]

I have a SQLite Database 4MB. I used command drop table name; and I dropped it. I checked in SQlite Manager that no more table name. However, I checked the filesize, it is still 4MB, the same. I use ...
0
votes
1answer
20 views

Use a calculation inside the where part

I have a problem formulating a sql query. The code is used in a php script accessing a sqlite database. What I want to do: I only want to select datasets which are over an individual offset: select ...
2
votes
0answers
111 views

What is the use of SQLite connection string “Data Source = :memory:”? [closed]

Inadvertently while I was finding a way for a quick test of my first SQLite user defined function without having to create a SQLite database, I've found this short SQLite connection string which ...
2
votes
2answers
56 views

SQL group by 3 columns with a special feature

I have a table that contains name, color1, color2, color3 and other columns(SQLite): CREATE TABLE data (name TEXT, lvlavailable INTEGER, lvlExtra TEXT, color1 TEXT, color2 TEXT, color3 TEXT); ...
0
votes
2answers
49 views

Select all values in a column into a string in SQLite?

In SQL Server, I can do this with the help of Cursor (to loop through each row in the result set and build my string). But I don't know how to do the same in SQLite, this task is not like the ...
1
vote
1answer
31 views

SQLITE ON UPDATE Actions

Based on the SQLite foreign key documentation, it should be the way of creating two database, and the field that referencing the parent field will get updated too if the parent field get updated. ...
1
vote
2answers
56 views

SQLite NOT NULL constraint not working with INSERT OR IGNORE

I am with Python 2.7 and SQLite3. Here is the code: #!/usr/bin/env python import sqlite3 conn = sqlite3.connect('example.db') c = conn.cursor() c.execute('''CREATE TABLE stocks ...
1
vote
1answer
55 views

Update multiple columns on a row with a single select in sqlite

In SQLite I need to update row counts of a related table. The query below does what I want but it walks the table multiple times to get the counts: UPDATE overallCounts SET total = (count(*) FROM ...
2
votes
2answers
62 views

Insert multiple rows in SQLite

I am trying to insert multiple rows in a SQLite (latest version) table but throws an error got the idea from HERE and here is my sql query : INSERT INTO "Track" SELECT "Leonard Collections" AS ...
-1
votes
4answers
52 views

SQLite query to match text string in column

I have a database column that contains text in CSV format. A sample cell looks like this: Audi,Ford,Chevy,BMW,Toyota I'd like to generate a query that matches any column with the string 'BMW'. How ...
-1
votes
2answers
40 views

SQL query involving MAX

I have the following table I'd like to write a query for: Table name: Stats_State_County Column name Type Constraint ----------------------------------- Population number CountyName ...
0
votes
3answers
42 views

How to exclude a specific value in my sql query?

I have the following query which outputs everything correctly except that I don't want one of the rows it's giving me: SELECT r.Region_Cd, r.Region_Desc, COUNT(a.Region) AS Count FROM Region r ...
0
votes
1answer
29 views

SQLite 3 LEFT JOIN where 'IN' is search term

I've got a database table that needs to be joined to a table that contains countries. The LEFT JOIN is done on country ISO code and is as follows: SELECT table1.city, table2.Country, table2.Flag ...
-1
votes
1answer
24 views

SQL Query involving creating columns for displaying data

I'm having difficulties creating a query on the following table: Table Stats: Column name Type _______________________________ STNAME String AREANAME String Population2010 ...
1
vote
2answers
24 views

SQLite query aggregation

I have two columns of data in a SQLite table: users and URL. I'm trying to construct a query that returns the users with a particular URL. I'm trying the following: SELECT url, COUNT(url) as RESULT ...
0
votes
1answer
42 views

Create trigger for sqlite database that prevents insert

I'm trying to make a trigger for a sqlite database that represents a school. I have a table called Administrators with this schema: CREATE TABLE Administrators( ssn INT CHECK(ssn > 100000000), ...
0
votes
3answers
37 views

Something syntactically wrong with this SQL statement?

I keep getting an error when I try running this query in mysqlite3: SELECT Region_DESC, AgeGroup, Population (select REGION, sum(POPULATION) as Population, '0-15' AS AgeGroup from STATS Where Age ...
0
votes
2answers
45 views

SQL Query using AS

I'm trying to create a query which deals with two tables: Table: REGION Column Name Type Constraint REGION_Cd Number Primary Key REGION_Desc String Table: STATS Column Name ...
1
vote
2answers
37 views

SQL Query, working with MAX

I have a table with columns: population, state, and county I want to find the county with the max population for each state. I'd also only like to print the name of the county and the max population ...
1
vote
1answer
53 views

Which SQLite query performs better?

I've heard someone said that turning case_sensitive_like on can make the query work faster. If so, what do you think if we have 2 of the following queries which selects data on a case-insensitive ...
1
vote
3answers
213 views

SQL::Abstract generate insert with select query

insert into table1(id, text) select (max(id)+1), "Something" from table1 How to generate this query with SQL::Abstract or SQL::Abstract::More?
0
votes
3answers
41 views

Query for missing items in a table

I have a table of airport code pairs: |iata|icao| ----------- |ORD |KORD| |JFK |KJFK| |LAX |KLAX| |SFO |KSFO| I want to run a query that will return the codes that do not exist in this table, so if ...
0
votes
1answer
80 views

(Perl) Create query for DBI with SQL::Abstract

I want to add new record to table1 on SQLite use SQL::Abstract; my %data = ( id => \'max(id)', # it is doesn't work so which variant is right? record => 'Something' ); my $sql = ...
0
votes
0answers
24 views

sqlite dump only producing three lines

After attaching .sqlite file as db1 through sqlite3 and viewing the table contents, I try a .dump db1 and also a .dump [tablenamehere] and .dump db1.[tablenamehere].. I am only getting the following ...
0
votes
2answers
31 views

Should I use multicolumn index or two 1-column?

I have a table which I currently define as follows: CREATE TABLE pairs ( id INTEGER PRIMARY KEY, p1 INTEGER, p2 INTEGER, r INTEGER, UNIQUE(p1, p2) ON CONFLICT IGNORE, FOREIGN KEY (p1) REFERENCES ...
0
votes
1answer
74 views

How to get information from log files and add them to database table using Perl DBI sqlite

I have this assignment which requires me to take the source ip and destination port from this log file and add them to a database table i created using Perl dbi sqlite. i have tried to write a script ...
0
votes
1answer
33 views

Full Outer Join - Save Output in new table

I have two tables that I'm trying to join into one. I ran the following code successfully. SELECT * FROM combined LEFT OUTER JOIN isbn_price ON combined.isbn13 = isbn_price.isbn; My question is ...

1 2 3 4 5 13