Home > Database > Mysql Tutorial > body text

mysql-MYSQL 冻结解冻查询语句

WBOY
Release: 2016-06-06 09:43:35
Original
1784 people have browsed it

mysql查询语句数据数据库oracle

冻结解冻表
DROP TABLE IF EXISTS froze_info;
CREATE TABLE froze_info (
Id int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
ProId varchar(36) NOT NULL COMMENT '招标项目标识',
CompanyId varchar(36) NOT NULL COMMENT '用户标示',
UserId varchar(36) DEFAULT NULL COMMENT '授权代表',
Amt decimal(18,2) NOT NULL COMMENT '金额',
Flag char(1) NOT NULL COMMENT '操作标识',
SrcAct varchar(36) NOT NULL COMMENT '来源账户',
DstAct varchar(36) NOT NULL COMMENT '目的账户',
CreateDate varchar(19) NOT NULL COMMENT '创建时间',
RunningNum varchar(36) NOT NULL,
PRIMARY KEY (Id)
) ENGINE=MyISAM AUTO_INCREMENT=100006 DEFAULT CHARSET=utf8 COMMENT='冻结解冻信息表';

其中ProId,CompanyId,UserId ,Flag'<br>四个字段可以确定唯一Flag`是冻结解冻状态
怎么能查到未解冻的数据

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template