Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. 1 lut 2010 · Here's a query to update a table based on a comparison of another table. If record is not found in tableB, it will update the "active" value to "n". If it's found, will set the value to NULL. UPDATE tableA LEFT JOIN tableB ON tableA.id = tableB.id SET active = IF(tableB.id IS NULL, 'n', NULL)"; Hope this helps someone else.

  2. 21 sie 2024 · The IF statement has three ways: IF-THEN statement. IF-THEN-ELSE statement. IF-THEN-ELSEIF- ELSE statement. MySQL IF-THEN Statement: The IF-THEN statement in SQL is used to execute a block of code if a specified condition is true. If the condition evaluates to true, the code within the THEN block is executed.

  3. 26 lut 2014 · Here’s a snippet of SQL code and a procedure for updating a MySQL database table using a subquery and data from Microsoft Excel (or similar).

  4. 1 cze 2022 · There are two types of IFs in MySQL: the IF statement and the IF function. Both are different from each other. In this article, we will explain their diversities and show usage examples. Also, we will review other MySQL functions.

  5. In this article, we would like to show you UPDATE query with IF condition in MySQL. Quick solution: UPDATE `table_name` SET `column_name` = IF(condition , if_true, if_false); Practical example. To show UPDATE query with IF condition, we will use the following users table:

  6. 16 kwi 2016 · For this example, you would have to use the standard logical operators: UPDATE Tests SET TestScore = CASE WHEN (TestId = 10 AND TestSubId = 25) THEN 1000 WHEN (TestId = 11 AND TestSubId = 22) THEN 1100 END, TestScore2 = CASE WHEN (TestId = 10 AND TestSubId = 25) THEN 2000 WHEN (TestId = 11 AND TestSubId = 22) THEN 2100 END WHERE (TestId = 10 ...

  7. 18 lut 2018 · You can use below one for one table if you want to update many columns of one table. UPDATE table SET col1 = CASE WHEN col3 = 'name1' THEN 'a' WHEN col3 = '2' THEN b ELSE 0 END , col2 = CASE WHEN col3 = '1' THEN 'b' WHEN col3 = 'name2' THEN 'c' ELSE '' END ;

  1. Ludzie szukają również