代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/461028/1555522
java create.java
/*
* Copyright 2006 Maik Schreiber
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the Licen
www.eeworm.com/read/458008/1590232
sql create.sql
drop table if exists users;
drop table if exists line_items;
drop table if exists orders;
drop table if exists products;
create table products (
id int not null auto_increment
www.eeworm.com/read/458008/1590283
sql create.sql
drop table if exists users;
drop table if exists line_items;
drop table if exists orders;
drop table if exists products;
create table products (
id int not null auto_increment
www.eeworm.com/read/451042/1667425
sql create.sql
drop table checking;
create table checking
(id varchar(3) constraint pk_checking primary key,
balance decimal(10,2));
insert into checking
values ('123', 500.00);
drop table cash_in_machine;
www.eeworm.com/read/451042/1667434
sql create.sql
drop table savingsaccount;
create table savingsaccount
(id varchar(3) constraint pk_savings_account primary key,
firstname varchar(24),
lastname varchar(24),
balance numeric(10,2));
exit;
www.eeworm.com/read/451042/1667440
sql create.sql
drop table lineitems;
drop table orders;
create table orders
(orderid varchar(3) constraint pk_order primary key,
customerid varchar(3),
totalprice decimal(10,2),
status varchar(10));
insert into
www.eeworm.com/read/451042/1667446
sql create.sql
drop table checking;
create table checking
(id varchar(3) constraint pk_checking primary key,
balance decimal(10,2));
insert into checking
values ('123', 100.00);
drop table saving;
create t