代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/485584/1262397
sql netctoss.sql
drop sequence t_sq_wdd;
drop table t_detailwdd_1 cascade constraints;
drop table t_detailwdd_2 cascade constraints;
drop table t_detailwdd_3 cascade constraints;
drop table t_detailwdd_4 cascade const
www.eeworm.com/read/485584/1262401
sql createuser.sql
drop table t_ServiceUser_wdd;
drop table t_price_wdd;
drop table t_user_wdd;
drop sequence t_sq_wdd;
create table t_user_wdd (
user_id number(32) primary key, -- 主键编码
user_name
www.eeworm.com/read/485584/1262404
sql insert.sql
insert into t_detailwdd_1 values('ss','202.201.151.125',to_date('2008-1-1 9:23:04','YYYY-MM-DD HH24:MI:SS'),to_date('2008-1-1 10:23:40','YYYY-MM-DD HH24:MI:SS'),'192.168.0.23',60);
insert into t_detai
www.eeworm.com/read/485188/1263586
sql schema.sql
# Host: 127.0.0.1 Database: springaop_base
# ------------------------------------------------------
# Server version 5.0.17-nt
DROP DATABASE IF EXISTS `springaop_base`;
CREATE DATABASE `sprin
www.eeworm.com/read/484900/1265075
sql init.sql
insert into admin_tbl(uname,pwd) values('root','111111');
insert into admin_tbl(uname,pwd) values('admin','111111');
www.eeworm.com/read/484868/1265171
sql task.sql
-- SQL for creating tables to initialize a GSK database.
-- This script is platform specific. It uses some PostgreSQL specific
-- data types (e.g., bytea).
-- task_query_log is a complete log of
www.eeworm.com/read/484346/1270237
sql create.sql
drop table member;
create table member
(
member_no char(10),
password char(20),
gender char(1) default '男',
name varchar(40),
address varchar(255),
phone_number varchar(20),
www.eeworm.com/read/484346/1270238
sql data.sql
insert into member(member_no, password, gender, name, address, phone_number)
values ('0743041211','123456','男','李峰','四川大学软件学院','85581201');
insert into member(member_no, password, gender, name, add