建立和刪除表,新增 查詢 修改和刪除資料

2021-09-16 14:18:54 字數 918 閱讀 8851

建立資料庫

create database ***

建立表

--建立表

use ***

gocreate

table ***--使用某個資料

(heroid int

,name varchar(50

),nickname varchar(50

),*** char(2

),sal int

,bir datetime

)

刪除表(把錶的結構和表的資料一起刪除)

drop table ***

新增資料

insert into hero2 values(1,『松江』,『及時雨』,『男』,20000,getdate())

最簡單的查詢語句

--使用sql語句來查詢資料(最簡單的查詢語句)

select

*from hero2

--1查詢工資低於100的

select

*from hero2 where sal<

100

修改資料

--2工資低於100的提高10%

update hero2 set sal=sal*

1.1where sal<

100

刪除資料

--3刪除性別為女的

delete

from hero2 where ***=

'男'

鍊錶的新增,查詢,刪除

include include struct node 結點結構體 struct node head null 無結點時指向空 struct node tail null 頭尾指標 建立鍊錶,包括尾新增和頭新增 void addtail int data else tail sta 兩者的結構體是相...

模組的建立和新增,查詢

在visual studio code上的操作 1.建立乙個node modules的資料夾 2.在node modules中建立乙個content.router.js,tag.router.js,user.router.js的js檔案 模組 建立模組 終端 npm install mongoose...

新增查詢刪除資料

package demo1 leo description 暫無 date created in 2020 11 27 18 03 public class mylist public mylist object element get set方法 public object getelement ...