SQL中新增資料

2021-10-25 02:01:51 字數 791 閱讀 1145

方法一

直接匯入

右鍵單擊你要匯入表的資料庫->任務->匯入資料

方法二

create

database school--建立資料庫

use school

create

table student--建立資料庫裡的表

( id char(8

)primary

key,

--主鍵

name char(20

)not

null

, age int,)

--新增合法資料

--語法: insert into 表名 values(屬性值)

insert

into student values

('001'

,'小剛',24

)--參看表中全部的資訊

--語法:select * from 表名

select

*from student

--為指定屬性新增

--語法: insert into 表名(屬性名) values(對應屬性值)

insert

into student(id,name)

values

('002'

,'小紅'

)

sql建表及新增資料

建表語句 create table schema name.table name data dt varchar2 8 prdu code1 varchar2 20 prdu name1 varchar2 10 還可以加很多字段進來 可以使用excel批量生成上邊的 字段 字段型別 tablespa...

向表中新增資料

新增資料 1.所有欄位都插入 insert into student values a001 張三 男 01 5月 05 10 oracle中預設的日期格式 dd mon yy dd 日子 天 mon 月份 要加上漢字 月 不然報錯 yy 2位的年 如 09 6月 99 代表1999年6月9號 2....

SQL 利用游標迴圈新增資料

查詢資料 select invest.userid,borrowreturn.realreturntime,borrow.investtype,case borrow.investtype when 0 then 成功000,請注意查收 when 1 then 成功111,請注意查收 when 2 ...