sql数据库查询语句
SELECT 账号, 昵称
FROM 表A AS tblF
WHERE (tblF.账号 = 某个账号)
AND (EXISTS (
SELECT *
FROM 表A AS tblA
INNER JOIN 表B AS tblB
ON (tblA.账号 = tblB.账号)
WHERE (tblB.好友账号 = tblF.账号)
))
保证行
PS.是THX
㈡ 怎样用SQL语句查询一个数据库中的所有表
查询一个数据库中的所有表sql语句是show tables;
显示所有数据库的命令是:show databases;要查看某个数据库先要进入数据库使用user <数据库名>命令;进入数据库之后才能查询数据库中有哪些表。使用以下命令即可查出所有表:
show tables;
(2)sql数据库查询语句扩展阅读
mysql数据库的基本sql操作命令介绍:
1、显示当前数据库服务器中的数据库列表:mysql> SHOW DATABASES;
2、建立数据库:mysql> CREATE DATABASE 库名;
3、建立数据表:mysql> USE 库名;mysql> CREATE TABLE 表名 (字段名 VARCHAR(20), 字
名 CHAR(1));
4、删除数据库:mysql> DROP DATABASE 库名;
5、删除数据表:mysql> DROP TABLE 表名;
6、将表中记录清空:mysql> DELETE FROM 表名;
7、往表中插入记录:mysql> INSERT INTO 表名 VALUES ("hyq","M");
8、更新表中数据:mysql-> UPDATE 表名 SET 字段名1='a',字段名2='b' WHERE 字段名3='c';
9、用文本方式将数据装入数据表中:mysql> load data local infile "d:/mysql.txt" into table 表名;
10、导入.sql文件命令:mysql> USE 数据库名;mysql> source d:/mysql.sql;
㈢ SQL数据库查询语句怎么写
select tb1.学号,tb1.姓名,tb2.专业 from tb1,tb2 where tb1.姓名=tb2.姓名 and tb2.学分=75
㈣ sql数据库查询语句
select gongsi as 单位,bumen as 部门,xingming as 姓名,xingbie as 性别,nianling as 年龄
from pxsgs
where gongsi='上海第二公司' and bumen='上瓷部' and xingming='李雷'
select gongsi as 单位,bumen as 部门,xingming as 姓名,xingbie as 性别,nianling as 年龄
from pxsgs
where gongsi='上海第二公司' and bumen='上瓷部' and xingming='张秋林'
㈤ java sql数据库查询语句怎么写
使用java的jdbc来连接数据库
如连接mysql(其余数据库类似),引入mysql-connector-java-5.1.24.jar包到工程中,在程序中可以这样连接mysql:
String Server = 你服务器的ip;
String User = 你的账号名;
String Password = 你的密码;
String Database = 你的数据库名;
// 驱动程序名
String driver = "com.mysql.jdbc.Driver";
// URL指向要访问的数据库名scutcs
String url = "jdbc:mysql://"+Server+"/" + Database;
// 加载驱动程序
Class.forName(driver);
// 连续数据库
Connection conn = DriverManager.getConnection(url, User, Password);
if(!conn.isClosed())
System.out.println("Succeeded connecting to the Database!");
// statement用来执行SQL语句
Statement statement = conn.createStatement();
String sql = "select ** from ** where **";
ResultSet rs = statement.executeQuery(sql);
//假设数据库表只有两个属性值,一个属性值为String类型,另一个为Int类型
while(rs.next()) {
System.out.println(rs.getString(1)+" " +rs.getInt(2) );
}
㈥ SQL数据库语句大全
SQL数据库语句大全:
1、选择:select * from table1 where 范围
2、插入:insert into table1(field1,field2) values(value1,value2)
3、删除:delete from table1 where 范围
4、更新:update table1 set field1=value1 where 范围
5、排序:select * from table1 order by field1,field2 [desc]
6、总数:select count as totalcount from table1
7、求和:select sum(field1) as sumvalue from table1
㈦ sql数据库查询问题,查询语句如何写,谢谢!
- select UserName 姓名,
- sum(case Subject when '语文' then Source else 0 end) 语文,sum(case Subject when '数学' then Source else 0 end) 数学,
- sum(case Subject when '英语' then Source else 0 end) 英语 from TestTable group by UserName
主要解决思路就是用case when 的方法
㈧ SQL数据库查询语句!
select * from 6130 where 编号列 = '61000014'
这个其实是个很简单的查询。
原理是这样的
select * from 表名 where 编号列 = '61000014'
㈨ sql简单查询语句
1、首先打开数据库,建立好表。