1. SQL Server資料庫常用命令(建議收藏)
命令:create database 資料庫名;
示例:create database student;
命令:drop database 資料庫名;
示例:drop databasestudent;
命令:create table 表名
(列名數據類型,列名2.....)
示例:create table student
(snamechar(20),sidint)
命令:drop table 表名
示例:drop table student
(插入(新增)列)
命令:alter table 表名
add 新列名數據類型
示例:alter table student
addsageint
(刪除列)
命令:alter table 表名
drop column 列名
示例:alter table student
drop column sid
(修改列類型)
命令:alter table 表名
altercolumn 列名數據類型
示例:alter table student
altercolumnsidfloat(浮點型)
(新增約束)
命令:alter table 表名
alter column 列名新數據類型
示例:alter table student
alter column PK_sidprimarykey(sid)(新增的約束類型是主鍵約束)
(刪除約束)
命令:alter table 表名
drop列名
示例:alter table student
drop PK_sid
命令:select要查詢的數據列名
from 表名
where篩選條件(無法對分組後的數據進行篩選)
(高級搜索)【groupby 列名(分組)
having篩選條件(只能對分組後的數據進行篩選)
order by排序方式(控制數據最後輸出的排列方式有正序:asc、倒敘:desc)】
示例:selectsid
from student
wheresid=2
【group by sid
havingsid=1
order by desc】
命令:insertinto表名
(列名 ,列名)
values
(值,值)
示例:insertinto表名
(sname,sid,sage)
values
(『張三』,12,15)
命令:update from 表名
set 列名=新值
示例:update from student
set sname='李四'
命令:insert into 表名(值的總數必須和列的總數相同)
select值,值,值union all
selevt值,值,值
示例:insertinto表名
select'張三',15,18
select'李四',16,19
命令:create view 視圖名
as
select 列
from 表名
示例:create view students
as
select sname
from student
2. SQL資料庫裡面查詢表格的命令是什麼
命令:
select
sql 資料庫查詢表格的命令:用SELECT 語句
用法:
查詢某一列:SELECT 列名稱 FROM 表名稱
查詢所有列:SELECT * FROM 表名稱
注釋:
SQL 語句對大小寫不敏感。SELECT 等效於 select。
3. 資料庫知識,以下屬於SQL數據查詢命令的是
SELECT為SQL數據查詢命令,INSERT為數據操作命令,CREATE為數據定義命令,GRANT為數據控制命令。
查詢命令是A
望採納
4. 怎樣用SQL語句查詢一個資料庫中的所有表
查詢資料庫里所有表名和欄位名的語句
SQL 查詢所有表名:
SELECT NAME FROM SYSOBJECTS WHERE TYPE='U'
SELECT * FROM INFORMATION_SCHEMA.TABLES
結構化查詢語言(Structured Query Language)簡稱SQL,結構化查詢語言是一種資料庫查詢和程序設計語言,用於存取數據以及查詢、更新和管理關系資料庫系統;
sql 語句就是對資料庫進行操作的一種語言。
(4)sql命令查詢資料庫擴展閱讀:
SQL語句常見語句:
1、更新:update table1 set field1=value1 where 范圍;
2、查找:select * from table1 where field1 like 』%value1%』 (所有包含『value1』這個模式的字元串);
3、排序:select * from table1 order by field1,field2 [desc];
4、求和:select sum(field1) as sumvalue from table1;
5、平均:select avg(field1) as avgvalue from table1;
6、最大:select max(field1) as maxvalue from table1;
7、最小:select min(field1) as minvalue from table1[separator]。
參考資料來源:網路-sql語句
5. 怎樣使用命令行查看mysql資料庫
使用命令行連接mysql資料庫:
windows操作系統下,開始——運行,打開"運行"對話框,輸入cmd,點擊「確定」即可進入dos窗口。
dos窗口輸入登錄mysql資料庫命令
mysql
-h
127.0.0.1
-u
root
-p
命令參數說明:
mysql是登錄資料庫的命令,-h
後面跟伺服器的ip,由於本示例mysql伺服器安裝在本地,因此ip地址為127.0.0.1;-u
後面跟用戶名,本示例採用
root用戶登錄;-p
後面跟登錄密碼。
輸入上述命令後回車,再輸入登錄密碼,在回車即可完成登錄mysql資料庫服務了。跟著可以運行use
databasename語句操作某個資料庫了