ar
Feedback
There will be no singularity

There will be no singularity

الذهاب إلى القناة على Telegram

Smartface, technologies and decay @antonrevyako

إظهار المزيد
1 957
المشتركون
لا توجد بيانات24 ساعات
-17 أيام
-530 أيام
أرشيف المشاركات
fxtwitter.com/samwillis/status/1848672368819892233 Five years ago, in holistic.dev, we made full-fledged type inferences at any point in a query based on static analysis techniques. In addition to types, nullable and row count classes (none/one/one_or_none/many/many_or_none) were output... https://www.youtube.com/watch?v=ZzAgacFBr48

mysql 9.0 https://dev.mysql.com/doc/refman/9.0/en/mysql-nutshell.html What do you think they never did? modifying CTE and RETURNING

Friendly reminder:
The UNION and UNION ALL operators may order the rows in the final result set in an unspecified order. For example, it may place rows from the second result set before/after the row from the first result set.
I have encountered a situation where a query with UNION and UNION ALL resulted in a stable different row order... UNION is often used for something like this:

SELECT * FROM (
    SELECT id FROM t WHERE name = 'user_input'
    UNION
    SELECT id FROM t WHERE name = 'default_value'
)
LIMIT 1
It is important that if a record with 'user_input' is found, it should be the first record in the result. In such a case, add an ORDER BY of this form to the query:

ORDER BY name = 'default_value'

photo content

photo content