Re: [sqlite] SQL to SQLite

2019-12-03 Thread Keith Medcalf
On Tuesday, 3 December, 2019 05:39, gideo...@lutzvillevineyards.com wrote: >My query is : >UPDATE wbridge_history >SET yearclass = >( >SELECT D.wynklas >FROM >( >SELECT LidNo, PlaasNo, BlokNo, oesjaar, wynklas, >ROW_NUMBER() OVER (PARTITION BY LidNo, PlaasNo, BlokNo, oesjaar ORDER BY >COUNT(*)

Re: [sqlite] SQL to SQLite

2019-12-03 Thread Warren Young
On Dec 3, 2019, at 5:38 AM, gideo...@lutzvillevineyards.com wrote: > > The squigly red line starts at (PARTITION .. PARTITION BY is a valid SQLite window function: https://www.sqlite.org/windowfunctions.html#the_partition_by_clause but that feature is only about a year old in SQLite:

[sqlite] SQL to SQLite

2019-12-03 Thread gideon.e
GROUP BY LidNo, Plaasno, BlokNo, oesjaar, wynklas ) D WHERE D.LidNo = wbridge_history.LidNo AND D.PlaasNo = wbridge_history.PlaasNo AND D.BlokNo = wbridge_history.BlokNo AND D.oesjaar = wbridge_history.oesjaar AND D.row_num = 1 ); It works perfectly in SQL, but in SQLite it gives an error

Re: [sqlite] SQL to SQLIte

2019-12-02 Thread Warren Young
On Dec 2, 2019, at 11:22 AM, Simon Slavin wrote: > > Please post again, this time with the query. The table schema might also help: sqlite> .schema TableName ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

Re: [sqlite] SQL to SQLIte

2019-12-02 Thread Simon Slavin
On 2 Dec 2019, at 5:52pm, wrote: > I am having extreme difficulty to convert the above SQL query to SQLite. Please post again, this time with the query. Note that this mailing list strips attachments, so paste the query into your mess

[sqlite] SQL to SQLIte

2019-12-02 Thread gideon.e
I am having extreme difficulty to convert the above SQL query to SQLite. Can someone please help me. I need to udate the table using the most used text In a column for each row that has the same data. Regards ___ sqlite-users mailing list

Re: [sqlite] SQL to SQLite

2016-07-21 Thread Robby Helperin
Thanks, Dana. Yes, that's vb.net. -Original Message- From: sqlite-users-boun...@mailinglists.sqlite.org [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of dmp Sent: Thursday, July 21, 2016 11:58 AM To: sqlite-users@mailinglists.sqlite.org Subject: Re: [sqlite] SQL

Re: [sqlite] SQL to SQLite

2016-07-21 Thread dmp
> Thanks Dana, > I think you're talking about doing what I did, but I'm not 100% sure. > Below is my solution. Could you let me know if yours is the same or > something more elegant? Hello, I'm not sure of the programming language, VBasic, ?, but generally looking through it looks like

Re: [sqlite] SQL to SQLite

2016-07-21 Thread Tim Streater
On 20 Jul 2016 at 23:14, Robby Helperin wrote: > Thanks, Simon, this looks promising! > > Is this something that can be done programmatically in code (vb.net) or only > from the command prompt? > > If programmatically, could you shoot me a quick syntax example? Here's

Re: [sqlite] SQL to SQLite

2016-07-21 Thread Robby Helperin
[mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Simon Slavin Sent: Wednesday, July 20, 2016 6:46 AM To: SQLite mailing list Subject: Re: [sqlite] SQL to SQLite On 20 Jul 2016, at 12:21am, Robby Helperin <r...@spotlightmusic.com> wrote: > Any SQLite string is going to refer to

Re: [sqlite] SQL to SQLite

2016-07-21 Thread Robby Helperin
bCrLf & "UNIQUE constraint failed: SongVersionsTEST.SongVerID" Then Debug.WriteLine("That record is already in the table.") 'I think this line came from the "INSERT" version of this code I wrote and probably don't need it here, sorry.

Re: [sqlite] SQL to SQLite

2016-07-20 Thread R.A. Nagy
...@mailinglists.sqlite.org] On Behalf Of R.A. > Nagy > Sent: Wednesday, July 20, 2016 7:25 AM > To: SQLite mailing list > Subject: Re: [sqlite] SQL to SQLite > > There are several ways to work with other databases. From the SQLite, we > can > always attach another file so as to wo

Re: [sqlite] SQL to SQLite

2016-07-20 Thread Robby Helperin
] On Behalf Of R.A. Nagy Sent: Wednesday, July 20, 2016 7:25 AM To: SQLite mailing list Subject: Re: [sqlite] SQL to SQLite There are several ways to work with other databases. From the SQLite, we can always attach another file so as to work with > 1 database file at a time. >From a programmatic

Re: [sqlite] SQL to SQLite

2016-07-20 Thread dmp
> Message: 2 > Date: Tue, 19 Jul 2016 15:01:55 -0700 > From: <tm...@spotlightmusic.com> > To: <sqlite-users@mailinglists.sqlite.org> > Subject: [sqlite] SQL to SQLite > Message-ID: <004d01d1e209$2a356360$7ea02a20$@spotlightmusic.com> > Content-Type: text/p

Re: [sqlite] SQL to SQLite

2016-07-20 Thread R.A. Nagy
linglists.sqlite.org > [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of R.A. > Nagy > Sent: Tuesday, July 19, 2016 3:32 PM > To: SQLite mailing list > Subject: Re: [sqlite] SQL to SQLite > > Surely the best way to routinely & autocratically copy a set of data from > one

Re: [sqlite] SQL to SQLite

2016-07-20 Thread Simon Slavin
On 20 Jul 2016, at 12:21am, Robby Helperin wrote: > Any SQLite string is going to refer to just one database, so you can't write > an INSERT command that will take from one database and write to another, or > can you? How would this normally done? See the ATTACH

Re: [sqlite] SQL to SQLite

2016-07-20 Thread Robby Helperin
To: SQLite mailing list Subject: Re: [sqlite] SQL to SQLite Surely the best way to routinely & autocratically copy a set of data from one database to another SQL technology would be to use a programming language - like Java, C/C++, C#, or Python for example - so as to copy data between two diffe

Re: [sqlite] SQL to SQLite

2016-07-20 Thread Hick Gunter
sers@mailinglists.sqlite.org Betreff: [sqlite] SQL to SQLite What's the best way to Insert or Update records from a connected SQL database to the connected SQLite database? I don't mean just once, but to do every so often. Thanks. _

Re: [sqlite] SQL to SQLite

2016-07-19 Thread R.A. Nagy
Surely the best way to routinely & autocratically copy a set of data from one database to another SQL technology would be to use a programming language - like Java, C/C++, C#, or Python for example - so as to copy data between two different database connections. The only other way would be to

[sqlite] SQL to SQLite

2016-07-19 Thread tmp11
What's the best way to Insert or Update records from a connected SQL database to the connected SQLite database? I don't mean just once, but to do every so often. Thanks. ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-05 Thread Martin Jenkins
Dennis Cote wrote: P Kishor wrote: Anyway a little digging on wikipedia found this: /SQL/ is commonly spoken either as the names of the letters /ess-cue-el/ I pronounce XQP as ex queue pee so I reckon SQL should be ess queue ell, even if it was around twenty years before I was. Anyone who

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-05 Thread Dennis Cote
P Kishor wrote: snobs ;-) Hardly. More like Defenders of the One True Way. ;-) ...to each her own. And there is no need for this sort of feminist activism on this list either. :-) Anyway a little digging on wikipedia found this: /SQL/ is commonly spoken either as the names of the

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-05 Thread P Kishor
On 4/5/07, Dan Baker <[EMAIL PROTECTED]> wrote: - Original Message - From: "Dennis Cote" <[EMAIL PROTECTED]> To: "sqlite-users" <sqlite-users@sqlite.org> Sent: Wednesday, April 04, 2007 2:24 PM Subject: [sqlite] SQL and SQLite pronounciation? >

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-05 Thread Dan Baker
- Original Message - From: "Dennis Cote" <[EMAIL PROTECTED]> To: "sqlite-users" <sqlite-users@sqlite.org> Sent: Wednesday, April 04, 2007 2:24 PM Subject: [sqlite] SQL and SQLite pronounciation? Hi All, I have a simple question; how do you pronoun

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-05 Thread Martin Jenkins
P Kishor wrote: In any case, unless DRH establishes a semi-official policy, let the pronounciation be in public domain as well... to each her own. Well there is that Google video. You could look at that to get Dr Hipp's definitive pronunciation, but ISTR even he wasn't 100% consistent. ;)

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-05 Thread P Kishor
On 4/5/07, Dennis Cote <[EMAIL PROTECTED]> wrote: Martin Pelletier wrote: > > Hearing "sequel" for SQL always makes me cringe. > Me too! That is what prompted my original message. I just wanted to see if I was perhaps the only one who was bothered by that pronunciation. Thanks for the

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-05 Thread Dennis Cote
Martin Pelletier wrote: Hearing "sequel" for SQL always makes me cringe. Me too! That is what prompted my original message. I just wanted to see if I was perhaps the only one who was bothered by that pronunciation. Thanks for the confirmation. Dennis Cote

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread Doug Currie
On Wednesday, April 04, 2007 Martin Pelletier wrote: > I use a twist on the various versions listed so far: "es cue el-ait". > Hearing "sequel" for SQL always makes me cringe. Yeah. In some circles, "sequel" is reserved for the original SEQUEL query language were first published in 1974 by Don

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread Clark Christensen
e.org> Sent: Wednesday, April 4, 2007 1:24:39 PM Subject: [sqlite] SQL and SQLite pronounciation? Hi All, I have a simple question; how do you pronounce SQL and SQLite? I have heard some people pronounce SQL like "sequel", others like "squeal", and others like th

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread Martin Pelletier
I use a twist on the various versions listed so far: "es cue el-ait". Hearing "sequel" for SQL always makes me cringe. Dennis Cote wrote: I have a simple question; how do you pronounce SQL and SQLite? -- Martin Pelletier Informatique / Software Development Infodev

RE: [sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread Griggs, Donald
re: "S. Q. Lite... that is my pronunciation..." And calling it "squirrelite" is simply a tongue-in-cheek affectionate affectation ;-) - To unsubscribe, send email to [EMAIL PROTECTED]

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread Cesar Rodas
S. Q. Lite... that is my pronunciation and as I read in a book that is its pronunciation On 04/04/07, Alberto Simões <[EMAIL PROTECTED]> wrote: On 4/4/07, Joel Cochran <[EMAIL PROTECTED]> wrote: > I prefer the "ess cue ell" version. And I can never remmeber that there is > only one "el", so I

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread Alberto Simões
On 4/4/07, Joel Cochran <[EMAIL PROTECTED]> wrote: I prefer the "ess cue ell" version. And I can never remmeber that there is only one "el", so I end up saying "ess cue ell light" even though I know its wrong. Join the club, Joel. I do the same, myself. With the only difference that I

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread Joel Cochran
I prefer the "ess cue ell" version. And I can never remmeber that there is only one "el", so I end up saying "ess cue ell light" even though I know its wrong. -- Joel Cochran On 4/4/07, Dennis Cote <[EMAIL PROTECTED]> wrote: Hi All, I have a simpl

Re: [sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread P Kishor
On 4/4/07, Dennis Cote <[EMAIL PROTECTED]> wrote: Hi All, I have a simple question; how do you pronounce SQL and SQLite? See-quell See-que-lite -- Puneet Kishor http://punkish.eidesis.org/ Nelson Inst. for Env. Studies, UW-Madison http://www.nelson.wisc.edu/ Open Source Geos

[sqlite] SQL and SQLite pronounciation?

2007-04-04 Thread Dennis Cote
Hi All, I have a simple question; how do you pronounce SQL and SQLite? I have heard some people pronounce SQL like "sequel", others like "squeal", and others like three words "ess cue el". Which do you prefer? How about SQLite? Is it "ess cue light&quo