代码搜索:CASE
找到约 10,000 项符合「CASE」的源代码
代码结果 10,000
www.eeworm.com/read/398634/2374731
result case.result
drop table if exists t1;
select CASE "b" when "a" then 1 when "b" then 2 END;
CASE "b" when "a" then 1 when "b" then 2 END
2
select CASE "c" when "a" then 1 when "b" then 2 END;
CASE "c" when "a" then
www.eeworm.com/read/398634/2375362
test case.test
#
# Testing of CASE
#
--disable_warnings
drop table if exists t1;
--enable_warnings
select CASE "b" when "a" then 1 when "b" then 2 END;
select CASE "c" when "a" then 1 when "b" then 2 END;
select C
www.eeworm.com/read/397826/2399376
java case.java
package com.javapatterns.visitor.inventory;
public class Case extends Equipment
{
public double price()
{
return 30.00;
}
public void accept(Visitor v)
{
Sy
www.eeworm.com/read/397826/2399387
java case.java
package com.javapatterns.visitor.parts;
public class Case extends Equipment
{
public double price()
{
return 30.00;
}
}
www.eeworm.com/read/394943/2451770
java case.java
/*****************************************************************************
SQLJEP - Java SQL Expression Parser 0.2
November 1 2006
(c) Copyright 2006, Alexey Gaidukov
SQ
www.eeworm.com/read/392558/2494307
java case.java
package com.javapatterns.visitor.inventory;
public class Case extends Equipment
{
public double price()
{
return 30.00;
}
public void accept(Visitor v)
{
Sy
www.eeworm.com/read/392558/2494318
java case.java
package com.javapatterns.visitor.parts;
public class Case extends Equipment
{
public double price()
{
return 30.00;
}
}
www.eeworm.com/read/376006/2718012
out case.out
--
-- CASE
-- Test the case statement
--
CREATE TABLE CASE_TBL (
i integer,
f double precision
);
CREATE TABLE CASE2_TBL (
i integer,
j integer
);
INSERT INTO CASE_TBL VALUES (1, 10.1);
INSERT
www.eeworm.com/read/376006/2718156
sql case.sql
--
-- CASE
-- Test the case statement
--
CREATE TABLE CASE_TBL (
i integer,
f double precision
);
CREATE TABLE CASE2_TBL (
i integer,
j integer
);
INSERT INTO CASE_TBL VALUES (1, 10.1);
INS