1、創建資料庫 create database databaseName user databaseName go /* 轉到指定資料庫 */ 2、創建表 create table tableName( /* 欄位名 */ ) 3、插入數據 insert into tableName values( ...
1、創建資料庫
create database databaseName
user databaseName
go /* 轉到指定資料庫 */
2、創建表
create table tableName(
/*
欄位名
*/
)
3、插入數據
insert into tableName values('','','','','',',',); /* 括弧裡面是需要插入的數據 */
4、創建主鍵
alter table tableName add constra py_tableNameId primary key (tableNameId) /* py_tableNameId: 名稱;tableNameId:需要設置的主鍵名*/
5、添加外鍵
alter table tableNameA add constra py_tableNameId foreign key (tableNameAId) references tableNameB (tableNameBId) /* py_tableNameId: 名稱;tableNameAId:需要設置的外鍵名,tableNameBId:需要關聯的欄位名*/
6:修改數據
update tableName set 欄位名=‘’ where 條件(欄位名=‘ ’)
7:查詢數據
select * from tableName /*查詢所有的數據*/
select * from tableName where 條件 /* 條件查詢所有欄位 */
select top 10 from tableName /* 查詢表中前10條數據 or 按條件查詢前10條數據*/
select top 10 from tableName where 條件 /* 按條件查詢前10條數據 */
select distinct 欄位名 from tableName ";//查詢不重覆的數據
8、 刪除數據
delete from tableName where 條件 /* 刪除行 */
delete from tableName /* 刪除所有行 */
drop tableName /*刪除表*/
9、添加加欄位:
alter table tableName add 列名 varchar(20)10、刪除欄位
alter
table
tableNamedrop
column
欄位名;
可以參考:https://jingyan.baidu.com/article/c33e3f48d63800ea15cbb5cb.html 這個網站的增刪改查很詳細