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. 24 lip 2013 · If the value in A1 = 'A' then multiply B1 by .2. If the value in A1 = 'B' then multiply B1 by .15. If the value in A1 = 'C' then multiply B1 by .1. Here is the formula that I have put together, based on my research on this issue, but it is not working. =IF (A1='A',B1*.02,IF (A1='B',B1*.015,IF (A1='C',B1*.01)))</SPAN>.

  3. 1) Like the first example, layout your data into columns. 2) Double click into the next blank column beside you’re first row and insert the following formula. = “update table_name set column_value_to_update = ‘” & C2 & “‘ where column_primaryKey = ‘” & A2 & “‘;”

  4. 5 cze 2023 · This MySQL Cheat Sheet provides a concise and handy reference to the most commonly used MySQL commands and functionalities. It spans a range of topics, from connecting to a MySQL server and managing database contents, to the basic syntax for table creation and modification.

  5. How to connect to a MySQL database from Excel, fetch the latest data from it, and work with that data inside your spreadsheets in Excel. This tutorial is step-by-step and shows you how to do everything, from downloading the ODBC drivers (explained in the tutorial) to importing and transforming the data from specific tables in MySQL.

  6. 21 sie 2024 · Definition. The IF-THEN statement is used to execute a set of SQL statements based upon a pre-defined condition. When the condition checks to be TRUE, the statements between IF-THEN and ELSE execute. On the other hand, the statements (else-statements) between the ELSE and END IF execute.

  7. 8 sie 2024 · This MySQL cheat sheet provides a solid foundation for managing databases efficiently. Whether you’re working on a small project or a large-scale application, understanding these commands, functions, and best practices will help you get the most out of MySQL .