Most voted "sql-table" questions
Tables are database objects that contain all data in a database. In the tables, the data is organized in a logical way in a line-and-oluna format similar to that of a spreadsheet. Each row represents a unique record and each column represents a field in the record.
Learn more…3 questions
Sort by count of
-
22
votes3
answers12113
viewsCheck if a table exists in the database
How to check if a table exists in the database before trying to use it? <?php // define a tabela $table = 'banana'; // verificar se tabela "banana" existe aqui // $tableExists = ?? // executa…
-
4
votes1
answer1504
viewsAdd line to a datatable
I need to add a row in a table at a given position. I have the following methods: public void criarTabela(DateTime dia) { tabela = new DataTable(); switch (dia.DayOfWeek) { //case DayOfWeek.Monday:…
-
1
votes1
answer1533
viewsList sub-query table with main query
SGDB: Mysql. PROBLEM: I need to somehow relate the subquery (being table and highlighted field Funcionario.codZona1) with the table "Zone", which is in the main query. Is there any way? Table…