SQL Syntax: char to varchar type conversion(s)

Поиск
Список
Период
Сортировка
От Rachel Kay Street
Тема SQL Syntax: char to varchar type conversion(s)
Дата
Msg-id 35604AA3.41C6@rl.ac.uk
обсуждение исходный текст
Список pgsql-sql
Hello,

Can anyone answer this SQL question?

I have a field of type char in one table and wish to insert this
into a second table (with other fields) but the new field is of
type varchar.  How do I proceed?  The following (test) fails in pgsql.

create table temp1 ( code char(2) );
insert into temp1 values ('AB');
select * from temp1;
create table temp2 ( code1 char(10), code2 varchar(10) );
insert into temp2 (code1,code2) select code,code from temp1;
select * from temp2;

Rachel Street


****************************************************************
* R K Street - RAL Database Systems - (01235) 821900 ext 5833  *
* Rutherford Appleton Laboratory, Chilton, DIDCOT, Oxon, UK    *
* Email: R.K.Street@rl.ac.uk  or  street@wdcc1.bnsc.rl.ac.uk   *
****************************************************************

В списке pgsql-sql по дате отправления:

Предыдущее
От: "Jose' Soares Da Silva"
Дата:
Сообщение: Re: [SQL] New User -- PG features
Следующее
От: Magnus Hagander
Дата:
Сообщение: Finding 'holes'