SQL中怎么查询名称以‘A

 我来答
大宝妈谈教育
高粉答主

2020-03-31 · 关注我不会让你失望
知道小有建树答主
回答量:3306
采纳率:100%
帮助的人:56.2万
展开全部

1、创建测试表,如下图。

create table test_col_1(id number, var varchar2(200));

create table test_col_2(id number, var varchar2(200));

2、插入测试数据,如下图。

insert into test_col_1 

select level*8, 'var'||level*8 from dual connect by level <= 20;

insert into test_col_2 

select level, 'var'||level from dual connect by level <= 100;

3、查询A表与B表关联记录,如下图。

select *

  from test_col_2 b

 where exists (select 1 from test_col_1 a where b.id = a.id)

4、查询A表全部数据及A、B有关联的数据,如下图。

select *

  from test_col_1 a

union all

select *

  from test_col_2 b

 where exists (select 1 from test_col_1 a where b.id = a.id)

来自鱼木寨给力的蔡文姬
2021-04-17
知道答主
回答量:1
采纳率:0%
帮助的人:506
展开全部
题主出的题目有些模糊
假设题主的数据库是产品数据库
以A开头:select product_name from Product where product_name like 'A%'
以A结尾:select product_name from Product where product_name like '%A'
包含A:select product_name from Product where product_name like '%A%'
以上三种就是单个查找关键字的方法
望采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tearsmo
2012-02-22 · TA获得超过3639个赞
知道小有建树答主
回答量:1611
采纳率:50%
帮助的人:1147万
展开全部
以A开头麼

用模糊查询

select * from table where name like ‘A%'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友1eeb3fb
推荐于2017-09-19
知道答主
回答量:57
采纳率:0%
帮助的人:16.7万
展开全部
以A开头:select * from table where name like ‘A%'

以A结尾:select * from table where name like ‘%A'

包含A:select * from table where name like ‘%A%'
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
J_LD_P
2012-02-22 · TA获得超过109个赞
知道答主
回答量:103
采纳率:100%
帮助的人:43.2万
展开全部
以 “ ‘A ” 开头的用
select * from table_name where name like '''A%'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式