码迷,mamicode.com
首页 > 其他好文 > 详细

常见的数据表操作语句-增删改查

时间:2020-05-28 01:10:58      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:tom   常见   复制   ISE   常用操作   before   point   let   常用   

INSERT INTO 插入一条语句

-- INSERT INTO
INSERT INTO customers (
	first_name, 
	last_name,
    birth_date,
    address,
    city,
    state,
    points)
VALUES (
    ‘John‘, 
    ‘Smith‘,
    ‘1990-01-01‘,
    ‘address‘,
    ‘city‘,
    ‘CA‘,
    DEFAULT);

INSERT INTO shippers (name)
VALUES  (‘Shipper1‘),
	(‘Shipper2‘),
        (‘Shipper3‘);

-- Exercise
-- Insert three rows in the products table
INSERT INTO products(
	name,
    quantity_in_stock,
    unit_price)
VALUES
	(‘tomato1‘, 12, 24),
	(‘tomato2‘, 1.2, 23),
    (‘tomato2‘, 1.4, 12);
    
-- 快速复制一张表alter
CREATE TABLE orders_archived AS
SELECT * FROM orders;
-- 插入一部分
INSERT INTO orders_archived
SELECT *
FROM orders
WHERE order_date < ‘2019-01-01‘;

UPDATE 更新数据

-- update
USE sql_invoicing;
UPDATE invoices
SET payment_total = invoice_total * 0.5, payment_date = due_date
WHERE invoice_id = 3;

-- 多条记录更新
UPDATE invoices
SET payment_total = invoice_total * 0.5, payment_date = due_date
WHERE invoice_id IN (3, 4);

-- Exercies
-- Write a SQL statement to 
-- give any customers born before 1990
-- 50 extra points
USE sql_store;
UPDATE customers
SET points = points + 50
WHERE birth_date > ‘1990-01-01‘;

-- UPDATE

UPDATE invoices
SET payment_total = invoice_total * 0.5, payment_date = due_date
WHERE invoice_id = 
			(SELECT client_id
			FROM clients
			WHERE name = ‘Myworks‘);
            
UPDATE invoices
SET payment_total = invoice_total * 0.5, payment_date = due_date
WHERE invoice_id IN
			(SELECT client_id
			FROM clients
			WHERE state IN (‘CA‘, ‘NY‘))

删除数据 不常用操作

-- 删除所有记录
DELETE FROM invoices;

DELETE FROM invoices
WHERE invoice_id = (
		SELECT *
		FROM clients
		WHERE name = ‘Myworks‘
)

-- 恢复数据库

常见的数据表操作语句-增删改查

标签:tom   常见   复制   ISE   常用操作   before   point   let   常用   

原文地址:https://www.cnblogs.com/jly1/p/12977399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!