在表person中插入(1,Green,21)和(2,Suse,22,dancer)
时间: 2024-04-08 09:30:33 浏览: 92
根据你的要求,我更新了插入的元组,使其与你提供的值匹配。下面是更新后的脚本,在表 "person" 中插入 (1, 'Green', 21) 和 (2, 'Suse', 22, 'dancer')。
```sql
-- Create table "person"
USE test_db;
GO
CREATE TABLE person (
id INT,
name VARCHAR(50),
age INT,
info VARCHAR(100) NULL
);
-- Insert tuples into "person" table
INSERT INTO person (id, name, age, info)
VALUES
(1, 'Green', 21, NULL),
(2, 'Suse', 22, 'dancer');
-- Use local variable to count rows in "person" table
DECLARE @mycount INT;
SELECT @mycount = COUNT(*) FROM person;
-- Assign the row count to a variable named "row_count"
DECLARE @row_count INT;
SET @row_count = @mycount;
-- Display the row count
SELECT @row_count AS [Row Count];
```
请注意,我将 "info" 的值设置为 NULL,以便与你之前提到的 info 可以为空的要求一致。如果有任何其他要求,请随时告诉我。
阅读全文