mysql資料庫的sql語句
createtableaa(
typeIdint,
namevarchar(20))
createtablebb(
idint,
namevarchar(20),
typeIdint,
numint,
mint
)
insertintoaavalues(1,'自行車'),(2,'摩托車'),(3,'小汽車'),(4,'其它')
insertintobbvalues
(1,'li',1,1,500),
(2,'li',2,2,5000),
(3,'li',3,1,50000),
(4,'wanger',1,1,450),
(5,'wanger',2,1,5600)selectbb.name,
sum(casewhenaa.name='自行車'thenbb.num
else0
end)as[自行車num],
sum(casewhenaa.name='自行車'thenbb.m
else0
end)as[自行車m],
sum(casewhenaa.name='摩托車'thenbb.num
else0
end)as[摩托車num],
sum(casewhenaa.name='摩托車'thenbb.m
else0
end)as[摩托車m],
sum(casewhenaa.name='小汽車'thenbb.num
else0
end)as[小汽車num],
sum(casewhenaa.name='小汽車'thenbb.m
else0
end)as[小汽車m],
sum(casewhenaa.name='其它'thenbb.num
else0
end)as[其它num],
sum(casewhenaa.name='其它'thenbb.m
else0
end)as[其它m],
sum(bb.num)as[Allnum],
sum(bb.m)as[Allm]
fromaarightjoinbbonaa.typeId=bb.typeId
groupbybb.name
truncatetableaa
droptableaa
truncatetablebb
droptablebb
go
mysql 腳本的方法,請對照這個 sql server腳本去修改,如有疑問,及時溝通
2. MYSQL資料庫如何執行SQL語句
select @a=DRClass1, @b=DRClass2, @c=DRClass3, @d=DRClass4, @e=DRClass5 from Teacher Where TeacherID = @TeacherID create table classname(classname char(50)) insert into classname (classname) values (@a) if (@b is not null) begin insert into classname (classname) values (@b) if (@c is not null) begin insert into classname (classname) values (@c) if (@d is not null) begin insert into classname (classname) values (@d) if (@e is not null) begin insert into classname (classname) values (@e) end end end end select * from classname 以上這些SQL語句能不能轉成一個存儲過程?我自己試了下 ALTER PROCEDURE Pr_GetClass @TeacherID int, @a char(50), @b char(50), @c char(50), @d char(50), @e char(50) as select @a=DRClass1, @b=DRClass2, @c=DRClass3, @d=DRClass4, @e=DRClass5 from Teacher Where TeacherID = @TeacherID DROP TABLE classname create table classname(classname char(50)) insert into classname (classname) values (@a) if (@b is not null) begin insert into classname (classname) values (@b) if (@c is not null) begin insert into classname (classname) values (@c) if (@d is not null) begin insert into classname (classname) values (@d) if (@e is not null) begin insert into classname (classname) values (@e) end end end end select * from classname 但是這樣的話,這個存儲過程就有6個變數,實際上應該只提供一個變數就可以了 主要的問題就是自己沒搞清楚 @a,@b,@C,@d 等是臨時變數,是放在as後面重新做一些申明的,而不是放在開頭整個存儲過程的變數定義。 (標准化越來越近了):namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> 實戰SQL語句收集(不斷更新中--) 前言:這里將我編程實踐中遇到的有價值的sql語句一路記下來,一方面方便自己查用,一方面也夯實下即將遺忘的回憶。整個過程中我會不斷更新,直到不能再加為止,同時,這里只記錄最實用的咚咚,不效仿學院派的那一套。
3. 怎麼連接MYSQL資料庫和執行SQL語句
首先創建連接
就創建個Cnnection對象,然後把驅動加上,還有帳號密碼什麼的!我沒連過sql資料庫,不知道驅動,你可以在網上搜一下。
給你一個我連接mysql資料庫的例子
public Connection Getdata(){//這是連接資料庫的一個方法,還可以配置連接池。
Connection con=null;
try {
Class.forName("com.mysql.jdbc.Driver");//加驅動
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/data","root","qq");//資料庫路徑、埠、庫名、資料庫用戶名和密碼
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return con;
}
public void delete(int id){//對資料庫進行操作的方法,先調用上面寫好的連接!
Connection con=Getdata();
Statement st;
try {
st=con.createStatement();
st.executeUpdate("delete from kaoshi where id="+id);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
4. mysql的sql語句能用在別的資料庫上嗎
不保證一定能用
因為mysql的sql語句除了標準的sql之外還添加了自己的方言,標准sql部分是完全可以在其他資料庫中使用的,方言部分就不保證可以兼容其他資料庫
比如mysql的分頁語法limit,就是mysql的方言,在oracle和sqlserver上就不能用
比如你的查詢sql:
select * from 表 where 條件;
這種只包含標准sql語法的語句就可以在其他資料庫執行
但是你加了分頁語法
select * from 表 where 條件 limit 0,100
這個語句就不能在其他資料庫系統上使用了
5. mysql創建庫的sql語句
使用 create 命令創建資料庫,語法如下:
CREATE DATABASE 資料庫名;
如果資料庫名已經存在,則會提示不能創建,這里可以加上「if not exists"從句就可以避免類似錯誤,如下所示:
CREATE DATABASE IF NOT EXISTS 資料庫名;
6. Mysql資料庫中,要查詢前三條記錄,sql語句怎麼寫
select top 3 * from 表 --標准通用語法,適用於oracle,sql,mysql等
7. mysql資料庫執行sql語句怎麼寫
Mysql常用命令詳解
Mysql安裝目錄
資料庫目錄
/var/lib/mysql/
配置文件
/usr/share/mysql(mysql.server命令及配置文件)
相關命令
/usr/bin(mysqladmin mysqlmp等命令)
啟動腳本
/etc/init.d/mysql(啟動腳本文件mysql的目錄)
系統管理
連接MySQL
格式:
mysql -h 主機地址 -u用戶名 -p用戶密碼
例 1:連接到本機上的 MySQL。
hadoop@ubuntu:~$ mysql
-uroot -pmysql;
例 2:連接到遠程主機上的 MYSQL。
hadoop@ubuntu:~$ mysql -h
127.0.0.1 -uroot -pmysql;
修改新密碼
在終端輸入:mysql -u用戶名 -p密碼,回車進入Mysql。
>
use mysql;
> update user set password=PASSWORD('新密碼') where
user='用戶名';
> flush privileges; #更新許可權
> quit; #退出
增加新用戶
格式:grant select on 資料庫.* to
用戶名@登錄主機 identified by '密碼'
舉例:
例 1:增加一個用戶 test1 密碼為
abc,讓他可以在任何主機上登錄,並對所有資料庫有
查詢、插入、修改、刪除的許可權。首先用以 root 用戶連入
MySQL,然後鍵入以下命令:
mysql>grant select,insert,update,delete on *.* to
root@localhost identified by 'mysql';
或者
grant all privileges on *.* to
root@localhost identified by 'mysql';
然後刷新許可權設置。
flush privileges;
例
2:如果你不想 root 有密碼操作資料庫「mydb」里的數據表,可以再打一個命令將密碼消掉。
grant
select,insert,update,delete on mydb.* to root@localhost identified by
'';
刪除用戶
hadoop@ubuntu:~$ mysql
-u用戶名 -p密碼
mysql>delete from user where user='用戶名' and
host='localhost';
mysql>flush privileges;
//刪除用戶的資料庫
mysql>drop
database dbname;
資料庫操作
顯示所有的資料庫
mysql> show databases;(注意:最後有個
s)
創建資料庫
mysql> create database
test;
連接資料庫
mysql> use
test;
查看當前使用的資料庫
mysql> select
database();
當前資料庫包含的表信息
mysql>
show tables; (注意:最後有個 s)
刪除資料庫
mysql> drop database
test;
表操作
備注:操作之前使用「use
<資料庫名>」應連接某個資料庫。
建表
命令:create
table <表名> (<欄位名 1> <類型 1> [,..<欄位名 n> <類型
n>]);
例子:
mysql> create table MyClass(
> id int(4) not null
primary key auto_increment,
> name char(20) not null,
> sex int(4)
not null default '0',
> degree double(16,2));
獲取表結構
命令: desc 表名,或者show columns from
表名
例子:
mysql> describe MyClass
mysql> desc MyClass;
mysql>
show columns from MyClass;
刪除表
命令:drop table <表名>
例如:刪除表名為
MyClass 的表
mysql> drop table MyClass;
插入數據
命令:insert into <表名> [( <欄位名
1>[,..<欄位名 n > ])] values ( 值 1 )[, ( 值 n )]
例子:
mysql> insert
into MyClass values(1,'Tom',96.45),(2,'Joan',82.99), (2,'Wang',
96.59);
查詢表中的數據
查詢所有行
mysql>
select * from MyClass;
查詢前幾行數據
例如:查看錶 MyClass 中前 2 行數據
mysql>
select * from MyClass order by id limit 0,2;
或者
mysql> select * from
MyClass limit 0,2;
刪除表中數據
命令:delete from 表名 where 表達式
例如:刪除表
MyClass 中編號為 1 的記錄
mysql> delete from MyClass where id=1;
修改表中數據
命令:update 表名 set 欄位=新值,... where
條件
mysql> update MyClass set name='Mary' where id=1;
在表中增加欄位
命令:alter table 表名 add 欄位 類型
其他;
例如:在表 MyClass 中添加了一個欄位 passtest,類型為 int(4),默認值為 0
mysql> alter
table MyClass add passtest int(4) default '0'
更改表名
命令:rename table 原表名 to 新表名;
例如:在表
MyClass 名字更改為 YouClass
mysql> rename table MyClass to
YouClass;
更新欄位內容
命令:update 表名 set
欄位名 = 新內容
update 表名 set 欄位名 = replace(欄位名, '舊內容', '新內容');
例如:文章前面加入 4
個空格
update article set content=concat(' ', content);
資料庫導入導出
從資料庫導出資料庫文件
使用「mysqlmp」命令
首先進入 DOS
界面,然後進行下面操作。
1)導出所有資料庫
格式:mysqlmp -u [資料庫用戶名] -p
-A>[備份文件的保存路徑]
2)導出數據和數據結構
格式:mysqlmp -u [資料庫用戶名] -p
[要備份的資料庫名稱]>[備份文件的保存路徑]
舉例:
例 1:將資料庫 mydb 導出到 e:\MySQL\mydb.sql
文件中。
打開開始->運行->輸入「cmd」,進入命令行模式。
c:\> mysqlmp -h localhost -u
root -p mydb >e:\MySQL\mydb.sql
然後輸入密碼,等待一會導出就成功了,可以到目標文件中檢查是否成功。
例
2:將資料庫 mydb 中的 mytable 導出到 e:\MySQL\mytable.sql 文件中。
c:\> mysqlmp -h
localhost -u root -p mydb mytable>e:\MySQL\mytable.sql
例 3:將資料庫 mydb
的結構導出到 e:\MySQL\mydb_stru.sql 文件中。
c:\> mysqlmp -h localhost -u root -p
mydb --add-drop-table >e:\MySQL\mydb_stru.sql
備注:-h localhost
可以省略,其一般在虛擬主機上用。
3)只導出數據不導出數據結構
格式:
mysqlmp -u [資料庫用戶名] -p -t
[要備份的資料庫名稱]>[備份文件的保存路徑]
4)導出資料庫中的Events
格式:mysqlmp -u [資料庫用戶名] -p
-E [資料庫用戶名]>[備份文件的保存路徑]
5)導出資料庫中的存儲過程和函數
格式:mysqlmp -u [資料庫用戶名]
-p -R [資料庫用戶名]>[備份文件的保存路徑]
從外部文件導入資料庫中
1)使用「source」命令
首先進入「mysql」命令控制台,然後創建資料庫,然後使用該資料庫。最後執行下面操作。
mysql>source
[備份文件的保存路徑]
2)使用「<」符號
首先進入「mysql」命令控制台,然後創建資料庫,然後退出 MySQL,進入 DOS
界面。最後執行下面操作。
mysql -u root –p < [備份文件的保存路徑]
8. MySQL資料庫中,如何記錄SQL執行語句
-- 打開sql 執行記錄功能 set global log_output='TABLE'; -- 輸出到表 set global log=ON; -- 打開所有命令 執行記錄功能general_log, 所有語句: 成功和未成功的. set global log_slow_queries=ON; -- 打開慢查詢 sql 記錄 slow_log, 執行成功的: 慢查詢語句和未使用索引的語句 set global long_query_time=0.1; -- 慢查詢時間限制(秒) set global log_queries_not_using_indexes=ON; -- 記錄未使用索引的sql 語句 -- 查詢sql 執行記錄 select * from mysql.slow_log order by 1; -- 執行成功的:慢查詢語句,和未 使用索引的語句 select * from mysql.general_log order by 1; -- 所有語句: 成功和未成功的.-- 關閉sql 執行記錄
9. mysql資料庫的一個sql語句的寫法。
select b.訂單號,b.產品,顏色 from (select 訂單號,count(顏色) from表b having count(顏色) <=1 ) a1 ,b where a1.訂單號=b.訂單號 and b.顏色=紅;