Unfortunately the subject under discussion, SQL Standards, are not freely available. This makes discussing it a bit hard.
https://modern-sql.com/ has at least some detail.
| [reply] |
Hi
I've moved it to meditations since it's an opinion piece.
I'd also like you to edit the title and mark it (OT) for "Off-Topic".
> Any thoughts on all that?
I need examples or at least links to build an opinion.
Your description reads rather fuzzy.
| [reply] [d/l] |
do not quite adequately consider the requirements of Agile methodology
Before contemplating if they do, it may be wise to question if they should.
Agile methodology certainly has opponents - random example - and there is no clear case for why it should be universally applied to Perl, SQL or any other technology.
| [reply] |
| [reply] |
Any thoughts on all that?
Adding extra functionality doesn't necessarily come at the expense of previous ways of doing things. I cannot think of anything I wrote in SQL 20 years ago that would not work now subject to being tailored to the RDBMS in use. Although, like LanX I'd need some examples to be able to properly comment.
Compactness of code seems to me to be unimportant relative to clarity
I don't universally agree.
If it is a SQL query for a non-techie manager then sure, clarity is the priority. But the same isn't true for a query that is black boxed in a piece of code. Provided the creator and maintainers of that query understand it, nobody else need care about its clarity. Performance is probably the greatest concern followed by compactness.
| [reply] |
The number one priority of those maintaining a DB system isn't performance or clarity, it's the integrity of the data.
Extra code for clarity is extra code that can have bugs which can have an impact on data integrity.
| [reply] |
I agree with your first line. However I don't quite agree with your second. My thinking has been that all too often programming languages have not adequately taken into consideration the needs of the Agile community. If you were developing an analytical database, for example, in a Agile way, then logic separation might be key to that process of incremental development. The more logic one puts into a single statement the harder that becomes. For me SQL is the obvious case in point. But the same may also be true for Perl code. Perl code development could be impeded by excessive compacting of code. I'm in no way criticising the Perl community. It is however something that maybe the designers of the language, SQL in this case, but Perl also, should consider. Am I right?
| [reply] |