建立Oracle表 create table T_BANKCARD ( card_id VARCHAR2(20) not null, user_id VARCHAR2(20) not null, user_name VARCHAR2(20) not null, password VARCHAR2(10) not null, balance NUMBER(14,2) default 0, state CHAR(1) default '1' not null, create_time DATE, c
使用小米号码归属地数据库,有两张表data1和data2 先查询data1表,把手机号码截取前7位 select outkey from data1 where id=”前七位手机号” 再查询data2表, select location from data2 where id=”上面查出的outkey” 可以使用子查询 select location from data2 where id=(select outkey from data1 where id=”前7位手机号”) 创建数据库工具