代码搜索:CreateTable
找到约 333 项符合「CreateTable」的源代码
代码结果 333
www.eeworm.com/read/207238/15277980
cpp createtable.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
USERES("CreateTable.res");
USEFORM("Main.cpp", Form1);
//---------------------------
www.eeworm.com/read/207238/15278217
dpr createtable.dpr
program CreateTable;
uses
Forms,
Main in 'Main.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
www.eeworm.com/read/207238/15278218
res createtable.res
www.eeworm.com/read/490291/1206215
java createtable.java
package mysql;
import server.*;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
/**
* 璇ョ被鐢ㄤ簬鍒涘缓鏁版嵁搴
www.eeworm.com/read/487550/1235486
sql createtable.sql
create table users(
uid int auto_increment primary key,
uname varchar(20) not null,
upass varchar(20) not null
)
insert into users values(null,"ybw","1234")
www.eeworm.com/read/463390/1538175
sql createtable.sql
CREATE TABLE country (
id number(3),
name varchar2(20) constraint country_name_nn not null,
constraint country_id_pk primary key(id)
);
INSERT INTO country VALUES (1,'中国');
INSERT INT