instruction
stringclasses 2
values | output
float64 | sample
stringclasses 1
value | __index_level_0__
stringlengths 29
48
| __index_level_1__
stringlengths 94
128
| __index_level_2__
stringclasses 10
values | __index_level_3__
float64 |
---|---|---|---|---|---|---|
null | null | null | ��� 5���� ī�װ��� 3���� ��ȸ�ϼ��� | (SELECT first_name, last_name FROM public.actor LIMIT 5) UNION ALL (SELECT "name", NULL FROM public.category LIMIT 3); | CREATE TABLE public.actor ( actor_id serial4 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT actor_pkey PRIMARY KEY (actor_id) ); | null |
null | null | null | 4���� ���ÿ� 2���� ������ ��ȸ�ϰ� ������ �����ϼ��� | (SELECT city FROM public.city LIMIT 4) UNION ALL (SELECT country FROM public.country LIMIT 2); | CREATE TABLE public.city ( city_id serial4 NOT NULL, city text NOT NULL, country_id int2 NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT city_pkey PRIMARY KEY (city_id), CONSTRAINT city_country_id_fkey FOREIGN KEY (country_id) REFERENCES public.country(country_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
null | null | null | 5���� ���� �̸��� �ּҸ� �����ɴϴ� | (SELECT first_name, last_name FROM public.staff LIMIT 5) UNION ALL (SELECT address, NULL FROM public.address LIMIT 5); | CREATE TABLE public.staff ( staff_id serial4 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, address_id int2 NOT NULL, email text NULL, store_id int2 NOT NULL, active bool DEFAULT true NOT NULL, username text NOT NULL, "password" text NULL, last_update timestamptz DEFAULT now() NOT NULL, picture bytea NULL, CONSTRAINT staff_pkey PRIMARY KEY (staff_id), CONSTRAINT staff_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
null | null | null | ���� 4���� ���� 3���� ��ȸ�մϴ� | (SELECT city FROM public.city LIMIT 4) UNION ALL (SELECT country FROM public.country LIMIT 3); | CREATE TABLE public.city ( city_id serial4 NOT NULL, city text NOT NULL, country_id int2 NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT city_pkey PRIMARY KEY (city_id), CONSTRAINT city_country_id_fkey FOREIGN KEY (country_id) REFERENCES public.country(country_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
null | null | null | 5���� ī�װ��� �̸��� 5���� ��� �̸��� ��ȸ�ϼ��� | (SELECT "name" FROM public.category LIMIT 5) UNION ALL (SELECT first_name, NULL FROM public.actor LIMIT 5); | CREATE TABLE public.category ( category_id serial4 NOT NULL, "name" text NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT category_pkey PRIMARY KEY (category_id) ); | null |
mpaa_rating NULL, last_update timestamptz DEFAULT now() NOT NULL, special_features _text NULL, fulltext tsvector NOT NULL, CONSTRAINT film_pkey PRIMARY KEY (film_id), CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null | null | 3���� ��ȭ�� 3���� �� ��ȸ�ϼ��� | (SELECT title FROM public.film LIMIT 3) UNION ALL (SELECT "name", NULL FROM public."language" LIMIT 3); | CREATE TABLE public.film ( film_id serial4 NOT NULL, title text NOT NULL, description text NULL, release_year public."year" NULL, language_id int2 NOT NULL, original_language_id int2 NULL, rental_duration int2 DEFAULT 3 NOT NULL, rental_rate numeric(4, 2) DEFAULT 4.99 NOT NULL, length int2 NULL, replacement_cost numeric(5, 2) DEFAULT 19.99 NOT NULL, rating public.mpaa_rating DEFAULT 'G' | null |
null | null | null | 3���� ���� �̸��ϰ� 3���� ���� �̸����� ��ȸ�ϼ��� | (SELECT email FROM public.staff LIMIT 3) UNION ALL (SELECT email FROM public.customer LIMIT 3); | CREATE TABLE public.staff ( staff_id serial4 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, address_id int2 NOT NULL, email text NULL, store_id int2 NOT NULL, active bool DEFAULT true NOT NULL, username text NOT NULL, "password" text NULL, last_update timestamptz DEFAULT now() NOT NULL, picture bytea NULL, CONSTRAINT staff_pkey PRIMARY KEY (staff_id), CONSTRAINT staff_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT staff_store_id_fkey FOREIGN KEY (store_id) REFERENCES public.store(store_id) ); | null |
mpaa_rating NULL, last_update timestamptz DEFAULT now() NOT NULL, special_features _text NULL, fulltext tsvector NOT NULL, CONSTRAINT film_pkey PRIMARY KEY (film_id), CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null | null | 3���� ��ȭ ����� 2���� �� ��ȸ�ϼ��� | (SELECT title FROM public.film LIMIT 3) UNION ALL (SELECT "name", NULL FROM public."language" LIMIT 2); | CREATE TABLE public.film ( film_id serial4 NOT NULL, title text NOT NULL, description text NULL, release_year public."year" NULL, language_id int2 NOT NULL, original_language_id int2 NULL, rental_duration int2 DEFAULT 3 NOT NULL, rental_rate numeric(4, 2) DEFAULT 4.99 NOT NULL, length int2 NULL, replacement_cost numeric(5, 2) DEFAULT 19.99 NOT NULL, rating public.mpaa_rating DEFAULT 'G' | null |
null | null | null | 5���� ���� �̸��� 5���� ���� �̸��� ��ȸ�ϼ��� | (SELECT first_name, last_name FROM public.staff LIMIT 5) UNION ALL (SELECT first_name, last_name FROM public.customer LIMIT 5); | CREATE TABLE public.staff ( staff_id serial4 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, address_id int2 NOT NULL, email text NULL, store_id int2 NOT NULL, active bool DEFAULT true NOT NULL, username text NOT NULL, "password" text NULL, last_update timestamptz DEFAULT now() NOT NULL, picture bytea NULL, CONSTRAINT staff_pkey PRIMARY KEY (staff_id), CONSTRAINT staff_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT staff_store_id_fkey FOREIGN KEY (store_id) REFERENCES public.store(store_id) ); | null |
null | null | null | 4���� ������ ��ġ�� 2���� ������ �̸��� ��ȸ�ϼ��� | (SELECT address FROM public.address LIMIT 4) UNION ALL (SELECT city, NULL FROM public.city LIMIT 2); | CREATE TABLE public.address ( address_id serial4 NOT NULL, address text NOT NULL, address2 text NULL, district text NOT NULL, city_id int2 NOT NULL, postal_code text NULL, phone text NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT address_pkey PRIMARY KEY (address_id), CONSTRAINT address_city_id_fkey FOREIGN KEY (city_id) REFERENCES public.city(city_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
text | null | date NOT NULL, last_update timestamptz DEFAULT now() NULL, active int4 NULL, CONSTRAINT customer_pkey PRIMARY KEY (customer_id), CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT customer_store_id_fkey FOREIGN KEY (store_id) REFERENCES public.store(store_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | 5���� ���� �̸��ϰ� 2���� ���� �̸����� ��ȸ�ϼ��� | (SELECT email FROM public.customer LIMIT 5) UNION ALL (SELECT email FROM public.staff LIMIT 2); | CREATE TABLE public.customer ( customer_id serial4 NOT NULL, store_id int2 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, email text NULL, address_id int2 NOT NULL, activebool bool DEFAULT true NOT NULL, create_date date DEFAULT 'now' | null |
null | null | null | 3���� ���� ������ 3���� ������ ��ȸ�ϼ��� | (SELECT payment_id, customer_id FROM public.payment LIMIT 3) UNION ALL (SELECT customer_id, NULL FROM public.customer LIMIT 3); | CREATE TABLE public.payment ( payment_id serial4 NOT NULL, customer_id int2 NOT NULL, staff_id int2 NOT NULL, rental_id int4 NOT NULL, amount numeric(5, 2) NOT NULL, payment_date timestamptz NOT NULL, CONSTRAINT payment_pkey PRIMARY KEY (payment_id), CONSTRAINT payment_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES public.customer(customer_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
mpaa_rating NULL, last_update timestamptz DEFAULT now() NOT NULL, special_features _text NULL, fulltext tsvector NOT NULL, CONSTRAINT film_pkey PRIMARY KEY (film_id), CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null | null | 5���� ��ȭ�� 5���� ���� �Բ� ��ȸ�ϼ��� | (SELECT title FROM public.film LIMIT 5) UNION ALL (SELECT "name", NULL FROM public."language" LIMIT 5); | CREATE TABLE public.film ( film_id serial4 NOT NULL, title text NOT NULL, description text NULL, release_year public."year" NULL, language_id int2 NOT NULL, original_language_id int2 NULL, rental_duration int2 DEFAULT 3 NOT NULL, rental_rate numeric(4, 2) DEFAULT 4.99 NOT NULL, length int2 NULL, replacement_cost numeric(5, 2) DEFAULT 19.99 NOT NULL, rating public.mpaa_rating DEFAULT 'G' | null |
null | null | null | 3���� ���� ������ 3���� ������ ��ȸ�ϼ��� | (SELECT payment_id, customer_id FROM public.payment LIMIT 3) UNION ALL (SELECT customer_id, NULL FROM public.customer LIMIT 3); | CREATE TABLE public.payment ( payment_id serial4 NOT NULL, customer_id int2 NOT NULL, staff_id int2 NOT NULL, rental_id int4 NOT NULL, amount numeric(5, 2) NOT NULL, payment_date timestamptz NOT NULL, CONSTRAINT payment_pkey PRIMARY KEY (payment_id), CONSTRAINT payment_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES public.customer(customer_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
mpaa_rating NULL, last_update timestamptz DEFAULT now() NOT NULL, special_features _text NULL, fulltext tsvector NOT NULL, CONSTRAINT film_pkey PRIMARY KEY (film_id), CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null | null | 3���� ��ȭ�� 2���� �� ��ȸ�ϼ��� | (SELECT title FROM public.film LIMIT 3) UNION ALL (SELECT "name", NULL FROM public."language" LIMIT 2); | CREATE TABLE public.film ( film_id serial4 NOT NULL, title text NOT NULL, description text NULL, release_year public."year" NULL, language_id int2 NOT NULL, original_language_id int2 NULL, rental_duration int2 DEFAULT 3 NOT NULL, rental_rate numeric(4, 2) DEFAULT 4.99 NOT NULL, length int2 NULL, replacement_cost numeric(5, 2) DEFAULT 19.99 NOT NULL, rating public.mpaa_rating DEFAULT 'G' | null |
text | null | date NOT NULL, last_update timestamptz DEFAULT now() NULL, active int4 NULL, CONSTRAINT customer_pkey PRIMARY KEY (customer_id), CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT customer_store_id_fkey FOREIGN KEY (store_id) REFERENCES public.store(store_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | 5���� ���� �̸��ϰ� 2���� ���� �̸����� ��ȸ�ϼ��� | (SELECT email FROM public.customer LIMIT 5) UNION ALL (SELECT email FROM public.staff LIMIT 2); | CREATE TABLE public.customer ( customer_id serial4 NOT NULL, store_id int2 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, email text NULL, address_id int2 NOT NULL, activebool bool DEFAULT true NOT NULL, create_date date DEFAULT 'now' | null |
null | null | null | 5���� ���� �̸��� 3���� ��ȭ ������ ��ȸ�ϼ��� | (SELECT city FROM public.city LIMIT 5) UNION ALL (SELECT title, NULL FROM public.film LIMIT 3); | CREATE TABLE public.city ( city_id serial4 NOT NULL, city text NOT NULL, country_id int2 NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT city_pkey PRIMARY KEY (city_id), CONSTRAINT city_country_id_fkey FOREIGN KEY (country_id) REFERENCES public.country(country_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
text | null | date NOT NULL, last_update timestamptz DEFAULT now() NULL, active int4 NULL, CONSTRAINT customer_pkey PRIMARY KEY (customer_id), CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT customer_store_id_fkey FOREIGN KEY (store_id) REFERENCES public.store(store_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | 2���� ������ 2���� ���� �̸��� ��ȸ�ϼ��� | (SELECT first_name, last_name FROM public.customer LIMIT 2) UNION ALL (SELECT country, NULL FROM public.country LIMIT 2); | CREATE TABLE public.customer ( customer_id serial4 NOT NULL, store_id int2 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, email text NULL, address_id int2 NOT NULL, activebool bool DEFAULT true NOT NULL, create_date date DEFAULT 'now' | null |
null | null | null | 3���� ���� �̸��� 3���� ���� �̸��� ��ȸ�ϼ��� | (SELECT country FROM public.country LIMIT 3) UNION ALL (SELECT city, NULL FROM public.city LIMIT 3); | CREATE TABLE public.country ( country_id serial4 NOT NULL, country text NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT country_pkey PRIMARY KEY (country_id) ); | null |
null | null | null | 5���� ���� �̸��� 5���� ���� �̸��� ��ȸ�ϼ��� | (SELECT city FROM public.city LIMIT 5) UNION ALL (SELECT first_name, last_name FROM public.customer LIMIT 5); | CREATE TABLE public.city ( city_id serial4 NOT NULL, city text NOT NULL, country_id int2 NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT city_pkey PRIMARY KEY (city_id), CONSTRAINT city_country_id_fkey FOREIGN KEY (country_id) REFERENCES public.country(country_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
null | null | null | 2���� ���� ������ 2���� ���� �̸��� ��ȸ�ϼ��� | (SELECT payment_id, customer_id FROM public.payment LIMIT 2) UNION ALL (SELECT country, NULL FROM public.country LIMIT 2); | CREATE TABLE public.payment ( payment_id serial4 NOT NULL, customer_id int2 NOT NULL, staff_id int2 NOT NULL, rental_id int4 NOT NULL, amount numeric(5, 2) NOT NULL, payment_date timestamptz NOT NULL, CONSTRAINT payment_pkey PRIMARY KEY (payment_id), CONSTRAINT payment_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES public.customer(customer_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
mpaa_rating NULL, last_update timestamptz DEFAULT now() NOT NULL, special_features _text NULL, fulltext tsvector NOT NULL, CONSTRAINT film_pkey PRIMARY KEY (film_id), CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null | null | 5���� ��ȭ ����� 3���� ��� �̸��� ��ȸ�ϼ��� | (SELECT title FROM public.film LIMIT 5) UNION ALL (SELECT "name", NULL FROM public."language" LIMIT 3); | CREATE TABLE public.film ( film_id serial4 NOT NULL, title text NOT NULL, description text NULL, release_year public."year" NULL, language_id int2 NOT NULL, original_language_id int2 NULL, rental_duration int2 DEFAULT 3 NOT NULL, rental_rate numeric(4, 2) DEFAULT 4.99 NOT NULL, length int2 NULL, replacement_cost numeric(5, 2) DEFAULT 19.99 NOT NULL, rating public.mpaa_rating DEFAULT 'G' | null |
text | null | date NOT NULL, last_update timestamptz DEFAULT now() NULL, active int4 NULL, CONSTRAINT customer_pkey PRIMARY KEY (customer_id), CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT customer_store_id_fkey FOREIGN KEY (store_id) REFERENCES public.store(store_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | 4���� ���� �̸��� 4���� ���� �̸��� ��ȸ�ϼ��� | (SELECT first_name, last_name FROM public.customer LIMIT 4) UNION ALL (SELECT first_name, last_name FROM public.staff LIMIT 4); | CREATE TABLE public.customer ( customer_id serial4 NOT NULL, store_id int2 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, email text NULL, address_id int2 NOT NULL, activebool bool DEFAULT true NOT NULL, create_date date DEFAULT 'now' | null |
mpaa_rating NULL, last_update timestamptz DEFAULT now() NOT NULL, special_features _text NULL, fulltext tsvector NOT NULL, CONSTRAINT film_pkey PRIMARY KEY (film_id), CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null | null | 3���� ��ȭ ����� 3���� ���� �̸��� ��ȸ�ϼ��� | (SELECT title FROM public.film LIMIT 3) UNION ALL (SELECT first_name, NULL FROM public.staff LIMIT 3); | CREATE TABLE public.film ( film_id serial4 NOT NULL, title text NOT NULL, description text NULL, release_year public."year" NULL, language_id int2 NOT NULL, original_language_id int2 NULL, rental_duration int2 DEFAULT 3 NOT NULL, rental_rate numeric(4, 2) DEFAULT 4.99 NOT NULL, length int2 NULL, replacement_cost numeric(5, 2) DEFAULT 19.99 NOT NULL, rating public.mpaa_rating DEFAULT 'G' | null |
null | null | null | 2���� ���� �̸��� 3���� ���� �̸��� ��ȸ�ϼ��� | (SELECT country FROM public.country LIMIT 2) UNION ALL (SELECT first_name, last_name FROM public.staff LIMIT 3); | CREATE TABLE public.country ( country_id serial4 NOT NULL, country text NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT country_pkey PRIMARY KEY (country_id) ); | null |
text | null | date NOT NULL, last_update timestamptz DEFAULT now() NULL, active int4 NULL, CONSTRAINT customer_pkey PRIMARY KEY (customer_id), CONSTRAINT customer_address_id_fkey FOREIGN KEY (address_id) REFERENCES public.address(address_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT customer_store_id_fkey FOREIGN KEY (store_id) REFERENCES public.store(store_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | 5���� ���� �̸��� 5���� ���� �̸��� ��ȸ�ϼ��� | (SELECT first_name, last_name FROM public.customer LIMIT 5) UNION ALL (SELECT city, NULL FROM public.city LIMIT 5); | CREATE TABLE public.customer ( customer_id serial4 NOT NULL, store_id int2 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, email text NULL, address_id int2 NOT NULL, activebool bool DEFAULT true NOT NULL, create_date date DEFAULT 'now' | null |
mpaa_rating NULL, last_update timestamptz DEFAULT now() NOT NULL, special_features _text NULL, fulltext tsvector NOT NULL, CONSTRAINT film_pkey PRIMARY KEY (film_id), CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null | null | 4���� ��ȭ ����� 2���� ��� �̸��� ��ȸ�ϼ��� | (SELECT title FROM public.film LIMIT 4) UNION ALL (SELECT "name", NULL FROM public."language" LIMIT 2); | CREATE TABLE public.film ( film_id serial4 NOT NULL, title text NOT NULL, description text NULL, release_year public."year" NULL, language_id int2 NOT NULL, original_language_id int2 NULL, rental_duration int2 DEFAULT 3 NOT NULL, rental_rate numeric(4, 2) DEFAULT 4.99 NOT NULL, length int2 NULL, replacement_cost numeric(5, 2) DEFAULT 19.99 NOT NULL, rating public.mpaa_rating DEFAULT 'G' | null |
null | null | null | 3���� ��� �̸��� 2���� ���� �̸��� ��ȸ�ϼ��� | (SELECT first_name, last_name FROM public.actor LIMIT 3) UNION ALL (SELECT first_name, last_name FROM public.customer LIMIT 2); | CREATE TABLE public.actor ( actor_id serial4 NOT NULL, first_name text NOT NULL, last_name text NOT NULL, last_update timestamptz DEFAULT now() NOT NULL, CONSTRAINT actor_pkey PRIMARY KEY (actor_id) ); | null |
mpaa_rating NULL, last_update timestamptz DEFAULT now() NOT NULL, special_features _text NULL, fulltext tsvector NOT NULL, CONSTRAINT film_pkey PRIMARY KEY (film_id), CONSTRAINT film_language_id_fkey FOREIGN KEY (language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT film_original_language_id_fkey FOREIGN KEY (original_language_id) REFERENCES public."language"(language_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null | null | 2���� ��ȭ ����� 3���� ���� �̸��� ��ȸ�ϼ��� | (SELECT title FROM public.film LIMIT 2) UNION ALL (SELECT country, NULL FROM public.country LIMIT 3); | CREATE TABLE public.film ( film_id serial4 NOT NULL, title text NOT NULL, description text NULL, release_year public."year" NULL, language_id int2 NOT NULL, original_language_id int2 NULL, rental_duration int2 DEFAULT 3 NOT NULL, rental_rate numeric(4, 2) DEFAULT 4.99 NOT NULL, length int2 NULL, replacement_cost numeric(5, 2) DEFAULT 19.99 NOT NULL, rating public.mpaa_rating DEFAULT 'G' | null |
null | null | null | 5���� ���� ������ 3���� ���� �̸��� ��ȸ�ϼ��� | (SELECT payment_id, customer_id FROM public.payment LIMIT 5) UNION ALL (SELECT first_name, last_name FROM public.staff LIMIT 3); | CREATE TABLE public.payment ( payment_id serial4 NOT NULL, customer_id int2 NOT NULL, staff_id int2 NOT NULL, rental_id int4 NOT NULL, amount numeric(5, 2) NOT NULL, payment_date timestamptz NOT NULL, CONSTRAINT payment_pkey PRIMARY KEY (payment_id), CONSTRAINT payment_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES public.customer(customer_id) ON DELETE RESTRICT ON UPDATE CASCADE ); | null |
README.md exists but content is empty.
Use the Edit dataset card button to edit it.
- Downloads last month
- 48