Introduction # In this blog, I would like to explore Vitess Operator for Kubernetes. This post demonstrates the sample implementation of Vitess in Kubernetes topology. I also explore common DBA tasks by demonstrating how they are handled in the Vitess ecosystem. Vitess, out of the box, comes with a lot of tools and utilities that one has to either incorporate or develop to manage MySQL topology. Let’s take a look at the capabilities of Vitess in these areas and demonstrate how they are performed under the operator realm.
Introduction In this article, we are going to see how the SQL EXISTS operator works and when you should use it. Although the EXISTS operator has been available since SQL:86, the very first edition of the SQL Standard, I found that there are still many application developers who don’t realize how powerful SQL subquery expressions really are when it comes to filtering a given table based on a condition evaluated on a different table. Database table model Let’s assume we have the following two tables in our database, that form a one-to-many... Read More
The post SQL EXISTS and NOT EXISTS appeared first on Vlad Mihalcea.
In many programing languages it is possible to shorten if statements using what’s called the ternary operator. It is sometimes referred as the “one line if statement” or the “short if statement”. This can help at times to produce cleaner code, however use this operator wisely as it is not always best to be used for more complicated statements.
PHP Example of an if statement
1 2 3 4 5 6 7 8 |
if($nFoo > 0) { echo "I'm at the work."; } else { echo "I'm at home."; } |
PHP Example using the ternary operator
1 |
echo $nFoo > 0 ? "I'm at the work." : "I'm at home."; |
The expression (expr1) ? (expr2) : (expr3) evaluates to expr2 if expr1 evaluates to …
[Read more]