File: test.batch

package info (click to toggle)
xmysql 1.8-1
  • links: PTS
  • area: contrib
  • in suites: hamm
  • size: 720 kB
  • ctags: 265
  • sloc: ansic: 2,602; makefile: 63; sql: 1
file content (12 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
SELECT * FROM 
RICK;
create table REGION_TBL (
	rg_id	int,
	rg_name	char(21),
	primary key rg_key (rg_id)
);
create table STATE_TBL (
	st_id	int,
	st_name	char(3),
	primary key st_key (st_id)
);