代码搜索:Drop
找到约 10,000 项符合「Drop」的源代码
代码结果 10,000
www.eeworm.com/read/327725/13065872
sql drop.sql
SET ECHO OFF;
SET FEEDBACK OFF;
SET VERIFY OFF;
SET PAGESIZE 0;
SET TERMOUT ON;
SET HEADING OFF;
SET LINESIZE 255;
shutdown;
startup mount;
spool result.sql
www.eeworm.com/read/239524/13274155
au drop.au
www.eeworm.com/read/323119/13351975
result drop.result
drop table if exists t1;
drop database if exists mysqltest;
drop database if exists client_test_db;
drop table t1;
ERROR 42S02: Unknown table 't1'
create table t1(n int);
insert into t1 values(1);
cre
www.eeworm.com/read/323119/13353059
test drop.test
# Initialise
--disable_warnings
drop table if exists t1;
drop database if exists mysqltest;
# If earlier test failed
drop database if exists client_test_db;
--enable_warnings
--error 1051
drop table
www.eeworm.com/read/136754/13362552
m drop.m
function ar = drop(ls,n)
%ls1 = drop(ls,n)
%this routine will remove the 'n'th entry of the input list 'ls' and
%return the result.
%
%Author: Ajit S. Bopardikar
%Copyright (c) 1998 by Addison
www.eeworm.com/read/318413/13479679