Answers for "update sql"

SQL
154

sql update query

--update query example
 UPDATE table_name
 SET column1 = value1, column2 = value2, ...
 WHERE condition;
Posted by: Guest on November-12-2019
2

sql update from different table

# SQL Server
UPDATE
    Sales_Import
SET
    Sales_Import.AccountNumber = RAN.AccountNumber
FROM
    Sales_Import SI
INNER JOIN
    RetrieveAccountNumber RAN
ON 
    SI.LeadID = RAN.LeadID;
# MySQL & MariaDB
UPDATE
    Sales_Import SI,
    RetrieveAccountNumber RAN
SET
    SI.AccountNumber = RAN.AccountNumber
WHERE
    SI.LeadID = RAN.LeadID;
Posted by: Guest on May-13-2020
10

sql update from select

UPDATE YourTable 
SET Col1 = OtherTable.Col1, 
    Col2 = OtherTable.Col2 
FROM (
    SELECT ID, Col1, Col2 
    FROM other_table) AS OtherTable
WHERE 
    OtherTable.ID = YourTable.ID
Posted by: Guest on April-02-2020
0

modifier une valeur sql

UPDATE table
SET nom_colonne_1 = 'nouvelle valeur'
WHERE condition
Posted by: Guest on November-19-2020
1

update sql

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition
Posted by: Guest on August-03-2021
3

update sql

-- sql update using string format 
String = "UPDATE yourtable SET yourcolumn = '" + yourvealueintext + "' WHERE column = " + item_to_compare_the_position_of_Your_Column;
                                           -- or                                            
String = "UPDATE yourtable SET yourcolumn = " + yourvalue_in_number + " WHERE column = " + item_to_compare_the_position_of_Your_Column;
Posted by: Guest on May-10-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language