Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select statement

Status
Not open for further replies.

lytheon

Programmer
Sep 23, 2003
4
NL
Does anyone know how to make a select statement for this table:

/**********************************************************/
/*Table: FUNCTIE */
/**********************************************************/
DROP TABLE FUNCTIE;
CREATE TABLE FUNCTIE ( FUNC_ID INT
, FUNC_NAAM VARCHAR(64)
, FUNC_NAAM_NS VARCHAR(64)
, FUNC_ACTIEF_BL SMALLINT
, PRIMARY KEY (FUNC_ID)
) TYPE=INNODB;

which shows the data_type, data_length, constrain_type and column_id?
 
show create table Functie;

Bye

Qatqat

Life is what happens when you are making other plans.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top