> On Aug 28, 2018, at 1:22 PM, David Raymond wrote:
>
> Embarrassing confession time: I didn't think you could use "using" to do this
> while selecting "a.*"
>
> https://www.sqlite.org/lang_select.html
> "For each pair of columns identified by a USING clause, the column from the
> right-hand
On 2018/08/28 7:18 PM, Jay Kreibich wrote:
On Aug 28, 2018, at 11:30 AM, Joe wrote:
A (perhaps silly ) beginners question:
My sqlite database contains several tables, two of them, table A and table B,
have text colums called 'nam'. The tables have about 2 millions lines.
What's the most effic
Behalf Of Jay Kreibich
Sent: Tuesday, August 28, 2018 1:18 PM
To: SQLite mailing list
Subject: Re: [sqlite] How to find records in a table which are not in a second
table?
> On Aug 28, 2018, at 11:30 AM, Joe wrote:
>
> A (perhaps silly ) beginners question:
> My sqlite database c
> On Aug 28, 2018, at 11:30 AM, Joe wrote:
>
> A (perhaps silly ) beginners question:
> My sqlite database contains several tables, two of them, table A and table B,
> have text colums called 'nam'. The tables have about 2 millions lines.
> What's the most efficient way to select all lines fro
On 28 Aug 2018, at 5:32pm, Richard Hipp wrote:
> I suppose:
>
> SELECT * FROM A WHERE nam NOT IN (SELECT nam FROM B);
Depending on how many names the tables have in column, a possible alternative
might be to use the EXCEPT compound operator here. Something like
SELECT nam FROM A
On 8/28/18, Joe wrote:
> A (perhaps silly ) beginners question:
> My sqlite database contains several tables, two of them, table A and
> table B, have text colums called 'nam'. The tables have about 2
> millions lines.
> What's the most efficient way to select all lines from table A with nam
> va
A (perhaps silly ) beginners question:
My sqlite database contains several tables, two of them, table A and
table B, have text colums called 'nam'. The tables have about 2
millions lines.
What's the most efficient way to select all lines from table A with nam
values, which are not present in t
7 matches
Mail list logo