代码搜索:sql

找到约 10,000 项符合「sql」的源代码

代码结果 10,000
www.eeworm.com/read/217348/14968595

cpp sql.cpp

void XXX::OnRefreshData(CListCtrl &m_List,CString sql) { CString str,temp; m_List.DeleteAllItems(); //m_messset.MoveFirst(); CRecordset *pRs; pRs=new CRecordset(&m_database); pRs-
www.eeworm.com/read/217161/14976246

sql all.sql

www.eeworm.com/read/217061/14980347

sql lynews.sql

CREATE TABLE news ( id int(11) NOT NULL auto_increment, class int(6) NOT NULL default '0', editer varchar(50) NOT NULL default '', title varchar(255) NOT NULL default '', newsfile varch
www.eeworm.com/read/116194/14983326

bas sql.bas

Attribute VB_Name = "txtSQl" Option Explicit Public fmainform As main Public gintMode As Integer Public flagEdit As Boolean Public recordNumber As Integer Public numBuffer As String Sub mai
www.eeworm.com/read/216905/14986768

sql sgip.sql

www.eeworm.com/read/116070/14990421

sql tlcyglxt.sql

www.eeworm.com/read/216820/14991412

sql createencitem.sql

create table enc_lineitem(encvalue varbinary(220) not null, shipdate_idx int not null check(shipdate_idx >= 0), discount_idx int not null check(discount_idx >= 0), quantity_idx int not null check(qua
www.eeworm.com/read/216820/14991413

sql createorders.sql

create table orders( O_ORDERKEY int not null primary key, O_CUSTKEY int not null, O_ORDERSTATUS char(1) not null, O_TOTALPRICE decimal(10, 2) not null check(O_TOTALPRICE >= 0), O_ORDERDATE date not
www.eeworm.com/read/216820/14991415

sql rowshipdate.sql

select rownum as num, * into #temp from lineitem select num, l_shipdate from #temp order by l_shipdate drop table #temp
www.eeworm.com/read/216820/14991417

sql createnation.sql

create table nation( N_NATIONKEY int not null primary key check(N_NATIONKEY >= 0), N_NAME char(25) not null, N_REGIONKEY int not null check (N_REGIONKEY >= 0), N_COMMENT varchar(152) not null, forei