File: 19_view.sql

package info (click to toggle)
liborlite-perl 2.00-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 544 kB
  • sloc: perl: 2,471; sql: 97; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 127 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
create table table_one (
	col1 integer not null primary key,
	col2 string
);

create view view_one as
select * from table_one;