Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. 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.

  2. 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.

  3. downloads.mysql.com › docs › mysql-for-excel-enMySQL for Excel

    MySQL for Excel is an add-in that enables you to browse MySQL schemas, tables, views, and procedures from within Microsoft Excel. With MySQL for Excel, you can perform the following operations: • Import MySQL data into Excel. • Export Excel data to MySQL as a new table or append data to an existing table.

  4. This document provides instructions on configuring MySQL for Excel, including: 1. Managing MySQL connections from within Excel to local or remote MySQL servers. 2. Creating new schemas (databases) directly from Excel. 3. Configuring global options that apply to all MySQL operations in Excel like SQL queries, imported tables, and edit sessions.

  5. Creating Update Statements. A similar technique can be used to create ‘Update’ statements. In this example we are updating the ‘rrp’ field of the ‘stock’ table for a particular ‘partNo’.

  6. 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.

  7. The MySQL UPDATE Statement. The UPDATE statement is used to modify the existing records in a table. UPDATE Syntax. UPDATE table_name. SET column1 = value1, column2 = value2, ... WHERE condition; Note: Be careful when updating records in a table! Notice the . WHERE clause in the UPDATE statement.