代码搜索:insert
找到约 10,000 项符合「insert」的源代码
代码结果 10,000
www.eeworm.com/read/161845/5549607
c arp_insert.c
/*
* Roadrunner/pk
* Copyright (C) 1989-2002 Cornfed Systems, Inc.
*
* The Roadrunner/pk operating system is free software; you can
* redistribute and/or modify it under the terms of the G
www.eeworm.com/read/161438/5553784
cpp insert_3.cpp
#ifdef __BCPLUSPLUS__
#include
#else
#include
#endif
#include
using namespace std;
typedef list LISTINT;
void main(void)
{
int rgTest1[] = {5,6,7};
www.eeworm.com/read/161040/5563790
txt data_insert.txt
DROP TABLE plsql101_product;
CREATE TABLE plsql101_product (
product_name VARCHAR2(25),
product_price NUMBER(4,2),
quantity_on_hand NUMBER(5,0),
last_stock_date DATE
www.eeworm.com/read/161040/5563794
txt sysdate_insert.txt
INSERT INTO plsql101_purchase VALUES
('Small Widget', 'SH', sysdate,10 );
INSERT INTO plsql101_purchase VALUES
('Medium Wodget', 'SH', sysdate-14, 15);
INSERT INTO plsql101_purchase
www.eeworm.com/read/161040/5563824
txt truncate_insert.txt
--select sysdate from dual;
--插入 100000条纪录
declare
s_time date;
--s_time varchar2;
e_time date;
v_name varchar2(13);
begin
--select to_char(sysdate,'yyyy/mm/dd hh:mi:ss) into s_time from dua
www.eeworm.com/read/161040/5563872
txt select_insert.txt
此例必须要求name,salary 是not null
create table sm_emp_promote
(PromEmpID char(10) not null,
Name varchar2(10) not null,
salary number(8,2) not null
);
1:
insert into sm_emp_promote (PromEmpID,Nam
www.eeworm.com/read/161040/5563924
txt insert_data.txt
-- ======================== PERSON ==================================
DROP TABLE plsql101_person;
CREATE TABLE plsql101_person (
person_code VARCHAR2(3),
first_name VARCHAR2(15),
www.eeworm.com/read/161040/5563956
txt insert_data.txt
------------------------ PERSON ------------------------
DROP TABLE plsql101_person;
CREATE TABLE plsql101_person (
person_code VARCHAR2(3),
first_name VARCHAR2(15),
last_name V
www.eeworm.com/read/161040/5563960
sql insert_data.sql
------------------------ PERSON ------------------------
DROP TABLE plsql101_person;
CREATE TABLE plsql101_person (
person_code VARCHAR2(3),
first_name VARCHAR2(15),
last_name V
www.eeworm.com/read/161040/5564098
txt data_insert.txt
drop table sm_emp cascade constraint;
CREATE table sm_emp
(EmpID CHAR(10) PRIMARY KEY,
Name VARCHAR2(10),
salary NUMBER(8,2),
TelNo CHAR(8));
INSERT INTO sm_emp VALUES('0000000001','张飞'